<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");

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

body {
  font-family: "Pretendard", sans-serif;
  overflow-x: hidden;
}

.rounded-lg {
  border-radius: 3rem !important;
}

.accordion-content {
  overflow: hidden;
}

.gradient {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgb(255, 255, 255) 100%
  );
}

.ham-menu {
  width: 100vw;
  height: 100vh;
  background-color: white !important;
  /* subtle box shadow  */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.repair-call-btn:hover svg {
    fill: #fff;
}
a,button{
    cursor: pointer !important;
}
.pill-checkbox input[type="checkbox"]:not(:checked) + span {
    background-color: #f5f5f4d9;
}

.pill-checkbox input[type="checkbox"]:checked + span {
    background-color: #000;
    color: white;
}
.blog-item p::first-of-type::first-letter,.blog-item h5::first-of-type::first-letter {
    font-size: 5em; /* or any desired font size */
  }
.blog-item ol{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.blog-item ol li{
    line-height: 1.625;
}
.blog-item  ol {
    counter-reset: item;
    list-style-type: none;
}

.blog-item  ol li::before {
    content: counter(item) ". ";
    counter-increment: item;
}
.map-section .container iframe{
    width:100% !important;
    height:600px !important;
}

</pre></body></html>