/* page setup */
body {
    margin: 0;
}

html {
    font-family: ui-sans-serif, system-ui, sans-serif;
    background: #0f172a;
    font-size: 14pt;
    color: white;
    text-align: center;
}

.header>*>.image {
    border: none;
    height: 80px
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1rem;
    color: white;
}

.block {
    margin-bottom: 1.5rem;
    position: relative;
}

.page {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3 {
    font: nanito-sans;
    color: #2cb2af;
    font-weight: 600;
    text-align: center;
    padding-bottom:0.5rem;
}

h1 {
    font-size: 2rem
}

h2 {
    font-size: 2rem
}

h3 {
    font-size: 1.5rem
}

.site-header>.block {
    margin: 0;
    padding: 0;
}

.site-header>*>.container {
    padding: .25rem;
}

/* menu */
.site-header {
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.site-nav__bar {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 2.5rem;
}

.site-nav__bar>.block {
    flex-shrink: 0;
    margin-bottom: 0;
}

.site-nav__bar>.block>.container {
    max-width: none;
    margin: 0;
    padding: .5rem 0;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-header__logo .image {
    height: 3.5rem;
    width: auto;
    margin-top: 0;
    border: none;
    border-radius: .25rem;
}

.site-nav {
    display: flex;
    align-items: center;
}

.site-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-nav__list a {
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
}

.site-nav__list a:hover {
    color: #E27F2E;
}

.site-nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: .3rem;
    background: none;
    border: none;
    padding: .5rem;
    cursor: pointer;
}

.site-nav__toggle span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: transform .25s, opacity .25s;
}

.site-nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(calc(.3rem + 2px)) rotate(45deg);
}

.site-nav__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.site-nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(calc(-.3rem - 2px)) rotate(-45deg);
}

@media (max-width: 768px) {
    .site-nav__toggle {
        display: flex;
    }

    .site-nav__list {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid #e2e8f0;
        padding: .5rem 0;
        z-index: 100;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    }

    .site-nav__list.is-open {
        display: flex;
    }

    .site-nav__list a {
        display: block;
        padding: .65rem 1.25rem;
        font-size: 1rem;
    }
}

/* hero */
.hero {
    height: 800px;
    background: #E27F2E;
    background-position: right;
}

.hero>.overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(90deg, #E27F2Eff 0%, #E27F2Eff 20%, #E27F2E66 50%, #E27F2E22 100%);
}

.hero>.container {
    position: relative;
    z-index: 1;
}
.breadcrumb {
    max-width: 500px;
    text-align:left;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #0f172a;
}

.hero>*>h1 {
    font-size: 3rem;
    font-weight: 700;
    padding-top: 2rem;
    margin-bottom: 2rem;
    max-width: 500px;
    text-shadow: 0px 3px 5px #000, 0px 5px 10px #E27F2E;
    color: white;
}

.hero>*>p {
    max-width: 500px;
    font-size: 1.5rem;
    margin-bottom: .5rem;
    color: white;
}

.hero>*>h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: .75rem;
    color: white;
    max-width: 500px;
}

.hero>*>.buttons>.button {
    font-size: 1.5rem;
}

.hero>*>.buttons {
    max-width: 500px;
    margin-top: 3rem;
}

/* info */
.info {
    padding: 5rem 0;
}

.info>h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: .75rem;
}

.info>p {
    margin-bottom: .5rem;
    line-height: 1.6;
}

.info__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.info__image .image {
    margin-top: 0;
}

@media (max-width: 768px) {
    .info__columns {
        grid-template-columns: 1fr;
    }
}

.style-grid-in-hero {
    margin-top: -180px;
}

/* grid */
.grid>.container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    /* Makes all items in the row stretch to equal height */
    align-items: stretch;
}

.style-grid-in-hero>.container>.info {
    background: #0f172aaa;
    border-radius: 25px;
    box-shadow: 2px 2px #3333;
    text-align: center;
    padding: 0;
}

@media (max-width: 768px) {
    .grid>.container {
        grid-template-columns: 1fr;
    }
}

.service {
    position:relative;
}

/* service */
.service>*>h2 {
    font-size: 1.35rem;
    margin-top:50px;
    font-weight: 700;
    margin-bottom: .55rem;
}

.service>p {
    line-height: 1.6;
    margin-bottom: .5rem;
}

.service > * > img {
    position: absolute;
    top: -40px;
    width: 80px;
    height: 80px;
    left: calc(-50px + 50%);
    box-shadow: 5px 5px 10px #333;
}

/* review */
.review>h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .35rem;
}

.review>p {
    margin-bottom: .5rem;
    font-style: italic;
}

.c2a>h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: .75rem;
}

.c2a>p {
    margin-bottom: .5rem;
}

/* buttons */
.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: .625rem;
    justify-content: center;
    margin-top: .75rem;
}

.button,
button {
    font-size: 1.2rem;
    border: 4px white solid;
    background: #2cb2af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: .7rem 2.5rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: transform .15s ease, box-shadow .15s ease;
}

.button:hover {
    transform: translateY(-1px);
}

button,
.button.primary {
    background: #2cb2af;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 99, 235, .25);
}

button,
.button.primary:hover {
    color: #2cb2af;
    background-color: white;
    border-color: #2cb2af;
}

.button.secondary {
    background: #E27F2E;
    color: #0f172a;
}

.button.secondary:hover {
    border-color: #e27f2e;
    color: #e27f2e;
    background-color: white;
}

.button.outline {
    border: 1px solid #94a3b8;
    color: #0f172a;
    background: #fff;
}

.button.link {
    color: #2cb2af;
    text-decoration: underline;
    padding: 0;
    background: transparent;
}

.image {
    max-width: 100%;
    border-radius: .75rem;
    margin-top: .75rem;
    display: block;
}

/* lists */
.ordered-list,
.bullet-list,
ul,
ol {
    text-align: left;
}

.ordered-list li {
    list-style: decimal;
    margin-left: 1.2rem;
}

.bullet-list li {
    list-style: disc;
    margin-left: 1.2rem;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
p,
pre {
    margin: 0;
}


.carousel__wrapper {
    position: relative;
}

.carousel__track {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel__track::-webkit-scrollbar {
    display: none;
}

.carousel__slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

.carousel__slide .image {
    width: auto;
    max-width: 800;
    max-height: 500px;
    margin: 0 auto;
    border-radius: .5rem .5rem 0 0;
    border-bottom: none;
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, .85);
    border: 1px solid #e2e8f0;
    border-radius: .5rem;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    padding: .375rem .625rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
}

.carousel__btn:hover {
    background: #fff;
}

.carousel__btn--prev {
    left: .5rem;
}

.carousel__btn--next {
    right: .5rem;
}

.carousel__dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: .75rem;
}

.carousel__dot {
    width: .625rem;
    height: .625rem;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: #cbd5e1;
    transition: background .2s;
}

.carousel__dot--active {
    background: #2563eb;
}

.carousel__slide .caption {
    text-align: center;
    font-size: .875rem;
    color: #64748b;
    margin-top: .5rem;
    padding: 0 .5rem .75rem;
}

.doc-layout {
    text-align: left;
}

a {
    color: #2cb2af;
}

.doc-layout hr {
    margin: 2rem 0;
    border-color: #6666;
}

.doc-layout h2,
.doc-layout h3 {
    text-align: left;
}

.doc-layout button {
    font-size: 1rem;
}

.blog-post {
    text-align: left;
}

.blog-post h2,
.blog-post h3 {
    text-align: left;
    padding-top: 2rem;
}

.blog-carousel {
    padding-top: 3rem;
}

.blog-carousel__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    /* Makes all items in the row stretch to equal height */
    align-items: stretch;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 960px) {
    .blog-carousel__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-carousel__grid {
        grid-template-columns: 1fr;
    }
}
.blog-card {
    display:flex;
    flex-direction: column;
    border: 2px solid #2cb2af33;
    border-radius: 15px;
    padding: 5px;
}

.blog-card > * {
    margin:5px 0px;
}

.blog-card a{
    text-decoration: none;
}

.blog-card a:hover {
    color: #E27F2E;
}

.blog-card__image{
    max-width: 100%;
    aspect-ratio:16/9;
    object-fit:cover;
}

.blog-card__body h2{
    font-size:1rem;
}

.blog-card__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #aaa;
    font-size: .9rem;
    line-height: 1.5;
    margin: 0;
    margin-bottom:1rem;
}

.blog-card__date{
    color: #666;
}

.blog-index h1 {
    margin:2rem 0;
}

/* ── faqs accordion container ─────────────────────────────── */

  .faqs { padding: 2rem 0; margin-bottom:4rem !important; } 
  .faqs p { margin-bottom: .5rem; line-height: 1.6; }
  .faqs__list { margin-top: .75rem; }
  .faq-item { border-bottom: 1px solid #E27F2E66; }
  .faq-item:first-child { border-top: 1px solid #E27F2E66; }
  .faq-item > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; gap: 1rem; }
  .faq-item > summary::-webkit-details-marker { display: none; }
  .faq-item > summary h3 { margin: 0; font-size: 1.05rem; font-weight: 600; flex: 1; }
  .faq-item > summary::after { content: ''; display: inline-block; width: .625rem; height: .625rem; border-right: 2px solid #E27F2E; border-bottom: 2px solid #E27F2E; transform: rotate(45deg)
  translateY(-.15rem); transition: transform .25s ease; flex-shrink: 0; }
  .faq-item[open] > summary::after { transform: rotate(-135deg) translateY(-.15rem); }
  .faq-item__body { padding: 0 0 1rem; }
  .faq-item__body p { line-height: 1.6; margin-bottom: .5rem; }
  .faq-item__body .image { max-width: 100%; border-radius: .5rem; margin-top: .5rem; }
  .faq-item__body .buttons { justify-content: flex-start; margin-top: .75rem; }

  hr {
    margin-top: 1rem;
    border-color: #3333;
  }
.style-c2a-attention > .container {
  background: white;
  border-radius: 25px;
  color: #0f172a;
  text-align: center;
  padding: 3rem;
  background-image: linear-gradient(70deg, #2cb2afff 0%, #2cb2afff 10%, white 40%, white 100%);
  max-width: calc(min(800px, 80%));
}

.style-c2a-attention h2 {
  text-shadow: 0px 0px 15px white;
  color: #E27F2E;
}
.style-info-pre-carousel {
  padding-bottom:0;
}
.style-info-teal-row{
  padding: 2rem 0;
  background: #2cb2af;
  text-align:center;
  font-weight: 400;
  font-size: 1.25rem;
  background-image: linear-gradient(70deg, #E27F2Eff 0%, #E27F2Eff 20%, #2cb2af 50%, #2cb2af 100%);
}

@media (min-width: 768px) {
.style-info-teal-row > .container{
  background-image: url('/uploads/domains/c8049e59-8bdb-4108-a6ca-f52a7d8bcf5b/originals/bfe77fe4-9b8c-4ca0-a733-4663e3ea1e2a-logo.png');
  background-repeat: no-repeat;
}
}
.style-info-teal-row h2 {
  color: #060707;
}
.service {
  background: #2cb2afff;
  background-image: linear-gradient(70deg, #10706f33 0%, #10706faa 20%, #10706fff 50%, #10706fff 100%);

  border-radius: 25px;
  color: white;
  display: flex;
  flex-direction: column;
}

.service:hover{
  box-shadow: 0px 0px 25px white;
}

.service h3, .service h4 { 
  color: white;
  text-align:center;
}
/* title */
.service h2 {
  color: #E27F2E;
  text-align: center;
  margin-bottom: 0rem;
  font-weight: 700;
  font-size: 3rem;
}

.service .button {
  background-color: #E27F2E;
}

/* subtitle */
.service h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

/* price */
.service h4 {
  font-size: 2rem;
}

.service ul {
  margin-block-start: 0em;
  padding-inline-start:0px;
}

.service ul li {
  color: white;
  margin-left: 0;
  padding-left: 1em;
  position: relative;
  list-style: none;
}

.service ul li:before {
  content: '\2713';
  left: 0;
  position: absolute;
  color: #6ed493;
}


/* Push middle content to fill available space */
.service ul, .service p, .service h3 {
  flex-grow: 1;
}

.service p {
  text-align:center;
  font-size: 0.75rem;
  
}
/* empty */
.style-info-image-first .info__image {
  order:-1;
}