/*-- -------------------------- -->
<---        Banner              -->
<--- -------------------------- -*/
/* Mobile */
@media (min-width: 0rem) {
  #int-hero #banner-title {
    font-size: 1.5rem;
  }
}
/* Tablet */
@media (min-width: 48rem) {
  #int-hero #banner-title {
    font-size: 2.8rem;
    max-width: fit-content;
  }
}
#int-hero picture img {
  object-position: 0 40%;
}

/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
@media (min-width: 0rem) {
  .service-container {
    margin: auto;
    max-width: 70em;
    width: 94%;
    padding: clamp(60px, 7vw, 100px) 0;
  }
  /* Dark Mode */
  body.dark-mode .service-sidebar .feature-h3,
  body.dark-mode .service-sidebar .service-header {
    color: #f7f7f7;
  }
  body.dark-mode .service-sidebar .service-header:after {
    background: var(--primary);
  }
  body.dark-mode .service-sidebar .service-featured-group {
    border-color: rgba(255, 255, 255, 0.2);
  }
  body.dark-mode .service-sidebar .service-feature {
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }
  body.dark-mode .service-article .service-h1 {
    color: #f7f7f7;
  }
  body.dark-mode .service-article #service-content h1, body.dark-mode .service-article #service-content h2, body.dark-mode .service-article #service-content h3, body.dark-mode .service-article #service-content h4, body.dark-mode .service-article #service-content h5, body.dark-mode .service-article #service-content h6 {
    color: #f7f7f7;
  }
  body.dark-mode .service-article #service-content p, body.dark-mode .service-article #service-content li {
    opacity: 0.8;
    color: #f7f7f7;
  }
  body.dark-mode .service-article #service-content a {
    color: #9dafe5;
  }
}
/*-- -------------------------- -->
<---        Service Content     -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media (min-width: 0rem) {
  .main-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 3.125em;
  }
  .main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    row-gap: 3.125em;
  }
  .service-article {
    display: block;
    max-width: 49.6875em;
    width: 100%;
  }
  .service-article .service-header {
    display: flex;
    align-items: center;
    gap: 1.875em;
    margin-bottom: 3.125em;
  }
  .service-article .service-header .service-mainImage {
    position: relative;
    display: block;
    border-radius: 0.5em;
    height: 169px;
    width: 100px;
    overflow: hidden;
    flex-shrink: 0;
    border: solid 2px var(--primary);
  }
  .service-article .service-header .service-mainImage img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .service-article .service-h1 {
    margin: 0;
    font-size: clamp(20px, 5vw, 39px);
    line-height: 1.4em;
    font-weight: 700;
    color: var(--headerColor);
  }
  .service-article #service-content {
    border-top: 1px solid #ebebeb;
    padding-top: 1.5625em;
  }
  .service-article #service-content h1 {
    margin-bottom: 1rem;
    font-size: 2.25rem;
    line-height: 1.75em;
    font-weight: 700;
    color: var(--headerColor);
  }
  .service-article #service-content h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    line-height: 1.5em;
    font-weight: 700;
    color: var(--headerColor);
  }
  .service-article #service-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.5em;
    font-weight: 700;
    color: var(--headerColor);
  }
  .service-article #service-content h4, .service-article #service-content h5, .service-article #service-content h6 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.5em;
    font-weight: 700;
    color: var(--headerColor);
  }
  .service-article #service-content p {
    margin: 0;
    margin-bottom: 1.6rem;
    font-size: 1rem;
    line-height: 1.6em;
    color: var(--bodyTextColor);
  }
  .service-article #service-content .blue-p {
    font-weight: bold;
    color: var(--primary);
  }
  .service-article #service-content a {
    text-decoration: underline;
    font-size: inherit;
    color: var(--secondary);
  }
  .service-article #service-content ul, .service-article #service-content ol {
    margin: 1rem 0;
    padding-left: 2.5rem;
  }
  .service-article #service-content ul li, .service-article #service-content ol li {
    margin-bottom: 1rem;
    list-style: circle;
    font-size: 1rem;
    line-height: 1.6em;
    color: var(--bodyTextColor);
  }
  .service-article #service-content video {
    display: block;
    border-radius: 0.5rem;
    margin: 1rem auto;
    height: auto;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .service-article #service-content iframe {
    display: block;
    border-radius: 0.5rem;
    margin: 1rem auto;
    width: 80%;
    max-width: 800px;
    aspect-ratio: 16/9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .service-article #service-content img {
    display: block;
    border-radius: 0.5rem;
    margin: 1rem auto;
    height: auto;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}
/* Tablet - 1024px */
@media (min-width: 64rem) {
  .main-content-wrapper {
    flex-direction: row;
    align-items: flex-start;
    column-gap: 1.25em;
  }
}
/*-- -------------------------- -->
<---          Sidebar           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media (min-width: 0rem) {
  .service-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 49.6875em;
    width: 100%;
    box-sizing: border-box;
  }
  .service-sidebar .service-featured-group {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid #ebebeb;
    border-radius: 0.5em;
    width: 100%;
    padding: 2.1875em 1.875em;
  }
  .service-sidebar .service-header {
    position: relative;
    display: block;
    margin-bottom: 1.875rem;
    font-size: 1.25em;
    font-weight: bold;
    color: var(--headerColor);
    text-align: center;
  }
  .service-sidebar .service-header:after {
    position: relative;
    content: "";
    display: block;
    border-radius: 0.25rem;
    margin: 1rem auto;
    background: var(--headerColor);
    height: 3px;
    width: 3.125rem;
  }
  .service-sidebar .service-feature {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #ebebeb;
    width: 100%;
    padding: 0.625rem 0;
    text-decoration: none;
    column-gap: 1.5em;
  }
  .service-sidebar .service-feature:nth-of-type(1) {
    padding-top: 0;
  }
  .service-sidebar .service-feature:last-of-type {
    border: none;
    padding-bottom: 0;
  }
  .service-sidebar .service-featureImage {
    position: relative;
    display: block;
    border-radius: 50%;
    height: 3.125em;
    width: 3.125em;
    overflow: hidden;
    flex: none;
  }
  .service-sidebar .service-featureImage img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .service-sidebar .feature-h3 {
    display: block;
    margin: 0;
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.5em;
    font-weight: 700;
    color: var(--headerColor);
  }
}
/* Tablet - 1024px */
@media (min-width: 64rem) {
  .service-sidebar {
    max-width: 22.5em;
  }
}
/*-- -------------------------- -->
<---   Before & After Chart    -->
<--- -------------------------- -*/
.before-after-chart {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
}

.before-after-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  width: 100%;
}

.before-after-image img {
  width: 95% !important;
  max-width: none !important;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}

.before-after-image .caption {
  font-size: 1rem;
  color: #555;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 48rem) {
  .before-after-chart {
    gap: 3rem;
    margin: 2.5rem 0;
  }
  .before-after-image {
    max-width: 500px;
  }
}
body.dark-mode .before-after-image img {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
body.dark-mode .before-after-image .caption {
  color: var(--bodyTextColorWhite, #f7f7f7);
}

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