@charset "UTF-8";
:root {
  --background: oklch(0.99 0.005 85);
  --foreground: oklch(0.15 0.01 85);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.15 0.01 85);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.15 0.01 85);
  --primary: oklch(0.65 0.15 35);
  --primary-foreground: oklch(0.99 0.005 85);
  --secondary: oklch(0.96 0.01 85);
  --secondary-foreground: oklch(0.15 0.01 85);
  --muted: oklch(0.96 0.01 85);
  --muted-foreground: oklch(0.45 0.01 85);
  --accent: oklch(0.75 0.12 25);
  --accent-foreground: oklch(0.99 0.005 85);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.98 0.01 85);
  --border: oklch(0.92 0.01 85);
  --input: oklch(0.92 0.01 85);
  --ring: oklch(0.65 0.15 35);
  --radius: 0rem;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 16px;
}

.main {
  min-height: 100vh;
  padding-top: 5rem;
}

.hero-section {
  position: relative;
  height: 400px;
  max-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url("../../img/pages/service.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg {
  background-image: url("../../img/pages/service.jpg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 48rem;
  padding: 0 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.125rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: white;
  opacity: 0.9;
  line-height: 1.7;
}

.message-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8556 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.message-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.message-content {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.message-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .message-title {
    font-size: 24px;
  }
}

@media (min-width: 768px) {
  .message-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .message-title br {
    display: none;
  }
}

.message-text {
  font-size: 1rem;
  color: white;
  opacity: 0.95;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .message-text {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .message-text br {
    display: none;
  }
}

.services-intro-section {
  padding: 6rem 0;
  background: white;
}

.service-intro-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .service-intro-item {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.service-intro-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .service-intro-item.reverse .intro-image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .service-intro-item.reverse .intro-content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.intro-image {
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.intro-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.intro-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.intro-content {
  position: relative;
}

.intro-number {
  font-size: 4rem;
  font-weight: 700;
  color: #ff6b35;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}

.intro-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: black;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .intro-title {
    font-size: 2rem;
  }
}

.intro-description {
  font-size: 0.9375rem;
  color: #313131;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .intro-description {
    font-size: 1rem;
  }
}

.intro-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.intro-features li {
  font-size: 0.9375rem;
  color: #313131;
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.intro-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: #ff6b35;
  border-radius: 50%;
}

.slideshow-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #000;
}

@media (min-width: 768px) {
  .slideshow-section {
    height: 600px;
  }
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slide-content {
  text-align: center;
  color: white;
  max-width: 48rem;
  padding: 0 2rem;
}

.slide-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .slide-title {
    font-size: 3rem;
  }
}

.slide-description {
  font-size: 1.125rem;
  color: white;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .slide-description {
    font-size: 1.25rem;
  }
}

.slide-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 10;
}

@media (max-width: 767px) {
  .slide-nav {
    display: none;
  }
}

.slide-nav:hover {
  background: rgba(255, 107, 53, 0.8);
}

.slide-nav.prev {
  left: 1rem;
}

.slide-nav.next {
  right: 1rem;
}

.slide-nav i {
  width: 1.5rem;
  height: 1.5rem;
}

.slide-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.dot.active {
  background: #ff6b35;
  width: 32px;
  border-radius: 6px;
}

.services-flow-section {
  background: #f9fafb;
}

.services-content {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .services-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
  }
}

.service-main {
  -webkit-box-flex: 2;
      -ms-flex: 2 1 0%;
          flex: 2 1 0%;
}

.service-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .service-card {
    padding: 3rem;
  }
}

.service-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-step {
  font-size: 2.25rem;
  font-weight: 700;
  color: black;
}

.service-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: black;
}

.service-duration {
  color: #313131;
}

.service-description {
  color: #313131;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service-indicators {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.service-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.service-indicator.active {
  background: #ff6b35;
}

.service-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.service-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #ff6b35;
  color: #ff6b35;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service-arrow:hover {
  background: #ff6b35;
  color: white;
}

.service-arrow i {
  width: auto;
  height: auto;
}

.service-image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
}

.service-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  aspect-ratio: 4/3;
}

@media (min-width: 1024px) {
  .service-img {
    aspect-ratio: 4/5;
  }
}

.service-steps {
  margin-bottom: 4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .service-steps {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-steps {
    -ms-grid-columns: (1fr)[5];
        grid-template-columns: repeat(5, 1fr);
  }
}

.service-step-card {
  text-align: left;
  padding: 1.5rem;
  border-radius: 0.75rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: white;
  cursor: pointer;
}

.service-step-card:hover {
  background: #fff5f1;
  -webkit-box-shadow: 0 1px 3px 0 rgba(255, 107, 53, 0.15);
          box-shadow: 0 1px 3px 0 rgba(255, 107, 53, 0.15);
}

.service-step-card.active {
  background: rgba(255, 107, 53, 0.05);
  border-color: #ff6b35;
}

.step-image {
  aspect-ratio: 4/3;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
  display: none;
}

@media (min-width: 768px) {
  .step-image {
    display: block;
  }
}

.step-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.step-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.step-number {
  font-size: 1.125rem;
  font-weight: 700;
  color: black;
}

.step-name {
  font-weight: 600;
  color: black;
}

.step-duration {
  font-size: 0.875rem;
  color: #313131;
}

.section-cta {
  text-align: right;
  margin-top: 4rem;
}

.cta-button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #ff6b35;
  border: 2px solid #ff6b35;
  background: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background: #ff6b35;
  color: white;
}

.service-details-section {
  background: #f9fafb;
}

.service-details-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .service-details-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.service-detail-card {
  padding: 2rem;
  border-radius: 0.75rem;
  background: white;
  border: 2px solid #f0f0f0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  background: #fff;
  border-color: #ff6b35;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 15px -3px rgba(255, 107, 53, 0.1);
          box-shadow: 0 10px 15px -3px rgba(255, 107, 53, 0.1);
}

.service-detail-icon {
  width: 3rem;
  height: 3rem;
  background: #ff6b35;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1rem;
}

.service-detail-icon i {
  width: auto;
  height: auto;
  color: white;
  font-size: 2rem;
}

.detail-icon {
  width: 3rem;
  height: 3rem;
  background: #ff6b35;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1rem;
}

.detail-icon i {
  width: auto;
  height: auto;
  color: white;
  font-size: 2rem;
}

.service-detail-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: black;
  margin-bottom: 1rem;
}

.detail-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: black;
  margin-bottom: 1rem;
}

.service-detail-description {
  color: #313131;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.detail-description {
  color: #313131;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.detail-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-features li {
  color: #313131;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.detail-features li::before {
  content: '•';
  color: #ff6b35;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.contact-cta-section {
  background: white;
}

.cta-content {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: black;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1rem;
  color: #313131;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cta-button.primary {
  background: #ff6b35;
  color: white;
  border-color: #ff6b35;
}

.cta-button.primary:hover {
  background: white;
  color: #ff6b35;
}

.cta-button.secondary {
  background: transparent;
  color: #ff6b35;
  border-color: #ff6b35;
}

.cta-button.secondary:hover {
  background: #ff6b35;
  color: white;
}

.footer {
  background: #111827;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section .footer-logo {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-section .footer-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-section .footer-description .footer-company {
  text-decoration: underline;
}

.footer-section .footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.footer-section .footer-address {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-section .footer-address p {
  margin-bottom: 0.25rem;
}

.footer-section .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section .footer-links li {
  margin-bottom: 0.5rem;
}

.footer-section .footer-links li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer-section .footer-links li a:hover {
  color: white;
}

.footer-section .footer-social .social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer-section .footer-social .social-link:hover {
  color: white;
}

.footer-section .footer-social .social-link .social-icon {
  margin-right: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.25rem;
  }
  .service-card {
    padding: 1.5rem;
  }
  .service-step {
    font-size: 1.875rem;
  }
  .service-title {
    font-size: 1.25rem;
  }
  .cta-title {
    font-size: 1.5rem;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fade-in {
  -webkit-animation: fadeIn 0.6s ease-out;
          animation: fadeIn 0.6s ease-out;
}

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

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

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

.mb-8 {
  margin-bottom: 2rem;
}

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

.mt-8 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\\:block {
    display: block;
  }
  .md\\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .md\\:hidden {
    display: none;
  }
}
/*# sourceMappingURL=service.css.map */