/* ==========================================================
   FLYWEB – Services Archive & Single Service Styles
   ========================================================== */

/* ── Variables ─────────────────────────────────────────── */
:root {
    --fw-pink:        #ff5a1f;
    --fw-pink-dark:   #d94b0e;
    --fw-dark:        #212529;
    --fw-dark-2:      #212529;
    --fw-grey-light:  #f5f5f5;
    --fw-grey-mid:    #ebebeb;
    --fw-text:        #444444;
    --fw-text-light:  #777777;
    --fw-white:       #ffffff;
    --fw-radius:      6px;
    --fw-transition:  0.3s ease;
    --fw-shadow:      0 4px 20px rgba(0,0,0,0.08);
    --fw-shadow-hover:0 8px 32px rgba(255,90,31,0.18);
}

/* ── Reset helpers ─────────────────────────────────────── */
.fw-section       { width: 100%; }
.fw-container     { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
.fw-row           { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.fw-col           { padding: 0 15px; box-sizing: border-box; }


/* ==========================================================
   HERO BANNER (shared – archive & single)
   ========================================================== */
.fw-hero {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    /* background: var(--fw-dark) center center / cover no-repeat; */
    overflow: hidden;
    background: linear-gradient(-90deg,rgba(0,0,0,0) 0%,rgba(31,39,50,0.75) 35%),url(https://divsinfotech.com/sparktoapp/wp-content/uploads/2026/02/page-title.jpg)!important;
    background-position: center !important;
}
.fw-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,.85) 40%, rgba(255,90,31,.35) 100%);
}
.fw-hero__inner {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    width: 100%;
}
.fw-hero__title {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    color: var(--fw-white);
    margin: 0 0 14px;
    line-height: 1.2;
}
.fw-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.fw-hero__breadcrumb a,
.fw-hero__breadcrumb span {
    font-size: 14px;
    color: rgba(255,255,255,.75);
    text-decoration: none;
}
.fw-hero__breadcrumb a:hover { color: var(--fw-pink); }
.fw-hero__breadcrumb .sep {
    color: var(--fw-pink);
    font-size: 16px;
}
.fw-hero__breadcrumb .current {
    color: var(--fw-pink);
    font-weight: 600;
}


/* ==========================================================
   ███  SERVICES ARCHIVE PAGE
   ========================================================== */

/* ── Section: Intro ──────────────────────────────────────── */
.fw-archive-intro {
    padding: 70px 0 50px;
    text-align: center;
    background: var(--fw-white);
}
.fw-section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fw-pink);
    margin-bottom: 10px;
}
.fw-section-tag::before,
.fw-section-tag::after {
    content: '✦';
    margin: 0 6px;
    font-size: 9px;
}
.fw-section-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: var(--fw-dark);
    line-height: 1.25;
    margin: 0 auto 16px;
    max-width: 640px;
}
.fw-section-sub {
    font-size: 16px;
    color: var(--fw-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Section: Services Grid ─────────────────────────────── */
.fw-services-grid-section {
    padding: 0 0 80px;
    background: var(--fw-white);
}
.fw-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fw-service-card {
    position: relative;
    border-radius: var(--fw-radius);
    overflow: hidden;
    box-shadow: var(--fw-shadow);
    cursor: pointer;
    text-decoration: none;
    display: block;
    aspect-ratio: 4/3;
}
.fw-service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.fw-service-card:hover .fw-service-card__img {
    transform: scale(1.07);
}
.fw-service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,.88) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px;
    transition: background var(--fw-transition);
}
.fw-service-card:hover .fw-service-card__overlay {
    background: linear-gradient(to top, rgba(255,90,31,.85) 30%, rgba(26,26,46,.7) 100%);
}
.fw-service-card__icon {
    width: 52px;
    height: 52px;
    background: var(--fw-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: background var(--fw-transition);
    flex-shrink: 0;
}
.fw-service-card:hover .fw-service-card__icon {
    background: var(--fw-dark);
}
.fw-service-card__icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.fw-service-card:hover .fw-service-card__icon img {
    filter: none;
}
.fw-service-card__name {
    font-size: 20px;
    font-weight: 700;
    color: var(--fw-white);
    margin: 0;
    line-height: 1.3;
}

/* ── Section: Work Process ──────────────────────────────── */
.fw-process-section {
    padding: 80px 0;
    background: var(--fw-dark);
    position: relative;
    overflow: hidden;
}
.fw-process-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,90,31,.12) 0%, transparent 70%);
    pointer-events: none;
}
.fw-process-section .fw-section-tag { color: var(--fw-pink); }
.fw-process-section .fw-section-title { color: var(--fw-white); }
.fw-process-section .fw-section-sub  { color: rgba(255,255,255,.65); }

.fw-process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 60px;
    position: relative;
}
.fw-process-steps::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed rgba(255,255,255,.2);
}
.fw-process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
}
.fw-process-step__img-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,.15);
    box-shadow: 0 0 0 8px rgba(255,90,31,.15);
    transition: box-shadow var(--fw-transition);
}
.fw-process-step.active .fw-process-step__img-wrap,
.fw-process-step:hover .fw-process-step__img-wrap {
    box-shadow: 0 0 0 8px rgba(255,90,31,.5);
    border-color: var(--fw-pink);
}
.fw-process-step__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.fw-process-step__num {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--fw-pink);
    color: var(--fw-white);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.fw-process-step__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--fw-white);
    margin: 0 0 8px;
}
.fw-process-step__desc {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

/* ── Section: Testimonials ──────────────────────────────── */
.fw-testimonials-section {
    padding: 80px 0;
    background: var(--fw-white);
}
.fw-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.fw-testimonial-card {
    background: var(--fw-white);
    border: 1px solid var(--fw-grey-mid);
    border-radius: var(--fw-radius);
    padding: 28px 24px;
    position: relative;
    box-shadow: var(--fw-shadow);
    transition: transform var(--fw-transition), box-shadow var(--fw-transition);
}
.fw-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fw-shadow-hover);
}
.fw-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    text-align: left;
}
.fw-testimonial-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--fw-pink);
}
.fw-testimonial-card__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--fw-dark);
    margin: 0 0 3px;
    padding: 0;
}
.fw-testimonial-card__role {
    font-size: 12px;
    color: var(--fw-text-light);
    margin: 0;
    padding: 0;
}
.fw-testimonial-card__quote {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--fw-pink);
    font-size: 40px;
    line-height: 1;
    font-family: Georgia, serif;
    opacity: .8;
}
.fw-testimonial-card__text {
    font-size: 14px;
    color: var(--fw-text);
    line-height: 1.7;
    margin: 0 0 16px;
    text-align: left;
}
.fw-testimonial-card__divider {
    height: 2px;
    background: var(--fw-pink);
    width: 40px;
    border-radius: 2px;
}

/* ── Section: Ticker / Marquee ──────────────────────────── */
.fw-ticker-section {
    background: var(--fw-dark);
    padding: 20px 0;
    overflow: hidden;
}
.fw-ticker-track {
    display: flex;
    white-space: nowrap;
    animation: fw-ticker 25s linear infinite;
}
.fw-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding-right: 60px;
    font-size: 22px;
    font-weight: 800;
    color: var(--fw-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.fw-ticker-item .sep {
    color: var(--fw-pink);
    font-size: 18px;
}
@keyframes fw-ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Section: Pricing ───────────────────────────────────── */
.fw-pricing-section {
    padding: 80px 0;
    background: #fff;
}
.fw-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.fw-pricing-card {
    background: var(--fw-white);
    border-radius: var(--fw-radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--fw-shadow);
    position: relative;
    transition: transform var(--fw-transition), box-shadow var(--fw-transition);
    overflow: hidden;
}
.fw-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--fw-shadow-hover);
}
.fw-pricing-card.is-featured {
    background: var(--fw-dark);
    color: var(--fw-white);
}
.fw-pricing-card__badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--fw-dark);
    color: var(--fw-white);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.fw-pricing-card.is-featured .fw-pricing-card__badge {
    background: var(--fw-pink);
}
.fw-pricing-card__price {
    font-size: 48px;
    font-weight: 900;
    color: var(--fw-dark);
    line-height: 1;
    margin-bottom: 4px;
}
.fw-pricing-card__price sup { font-size: 22px; vertical-align: super; }
.fw-pricing-card.is-featured .fw-pricing-card__price { color: var(--fw-white); }
.fw-pricing-card__period {
    font-size: 13px;
    color: var(--fw-text-light);
    margin-bottom: 24px;
}
.fw-pricing-card.is-featured .fw-pricing-card__period { color: rgba(255,255,255,.6); }
.fw-pricing-card__features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    text-align: left;
}
.fw-pricing-card__features li {
    padding: 7px 0;
    font-size: 14px;
    color: var(--fw-text);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--fw-grey-mid);
}
.fw-pricing-card.is-featured .fw-pricing-card__features li { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.1); }
.fw-pricing-card__features li::before {
    content: '✓';
    color: var(--fw-pink);
    font-weight: 700;
    flex-shrink: 0;
}
.fw-pricing-card__features li.disabled::before { content: '✗'; color: var(--fw-text-light); }
.fw-pricing-card__features li.disabled { opacity: .55; }
.fw-btn-pink {
    display: inline-block;
    background: var(--fw-pink);
    color: var(--fw-white) !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: 4px;
    text-decoration: none !important;
    transition: background var(--fw-transition), transform var(--fw-transition);
    border: none;
    cursor: pointer;
}
.fw-btn-pink:hover {
    background: var(--fw-pink-dark);
    transform: translateY(-2px);
}


/* ==========================================================
   ███  SINGLE SERVICE PAGE
   ========================================================== */
.fw-single-service {
    padding: 60px 0 80px;
    background: var(--fw-white);
}

/* ── Two-column layout ──────────────────────────────────── */
.fw-single-service__layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* ---------- SIDEBAR ---------- */
.fw-sidebar { position: sticky; top: 90px; }

.fw-sidebar-widget {
    margin-bottom: 28px;
    border-radius: var(--fw-radius);
    overflow: hidden;
    box-shadow: var(--fw-shadow);
}

/* Services list widget */
.fw-sidebar-widget__header {
    background: var(--fw-dark);
    color: var(--fw-white);
    font-size: 16px;
    font-weight: 700;
    padding: 16px 20px;
    margin: 0;
}
.fw-services-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--fw-white);
}
.fw-services-nav li { border-bottom: 1px solid var(--fw-grey-mid); }
.fw-services-nav li:last-child { border-bottom: none; }
.fw-services-nav li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--fw-dark);
    text-decoration: none;
    transition: background var(--fw-transition), color var(--fw-transition), padding var(--fw-transition);
}
.fw-services-nav li a:hover,
.fw-services-nav li.current-item a {
    background: var(--fw-pink);
    color: var(--fw-white);
    padding-left: 24px;
}
.fw-services-nav li a .arrow {
    font-size: 16px;
    opacity: .6;
    transition: opacity var(--fw-transition);
}
.fw-services-nav li a:hover .arrow,
.fw-services-nav li.current-item a .arrow { opacity: 1; }

/* Brochures widget */
.fw-brochures-list {
    list-style: none;
    margin: 0;
    padding: 10px 16px;
    background: var(--fw-white);
}
.fw-brochures-list li { margin: 6px 0; }
.fw-brochures-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid var(--fw-grey-mid);
    border-radius: var(--fw-radius);
    font-size: 14px;
    color: var(--fw-dark);
    text-decoration: none;
    transition: border-color var(--fw-transition), color var(--fw-transition);
}
.fw-brochures-list li a:hover {
    border-color: var(--fw-pink);
    color: var(--fw-pink);
}
.fw-brochures-list li a .icon {
    width: 34px;
    height: 34px;
    background: var(--fw-grey-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

/* Contact/Help widget */
.fw-contact-widget {
    background: var(--fw-dark);
    border-radius: var(--fw-radius);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.fw-contact-widget::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="160" cy="40" r="80" fill="%23ff5a1f" fill-opacity=".08"/><circle cx="40" cy="160" r="80" fill="%23ff5a1f" fill-opacity=".06"/></svg>') center/cover;
    pointer-events: none;
}
.fw-contact-widget__icon {
    width: 56px;
    height: 56px;
    background: var(--fw-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    font-size: 22px;
}
.fw-contact-widget__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--fw-white);
    margin: 0 0 18px;
    position: relative;
}
.fw-contact-widget__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,.8);
    margin-bottom: 10px;
    position: relative;
}
.fw-contact-widget__item a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: color var(--fw-transition);
}
.fw-contact-widget__item a:hover { color: var(--fw-pink); }
.fw-contact-widget__img {
    margin-bottom: 20px;
    border-radius: var(--fw-radius);
    overflow: hidden;
    position: relative;
}
.fw-contact-widget__img img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    border-radius: var(--fw-radius);
    opacity: .7;
}

/* ---------- MAIN CONTENT ---------- */
.fw-service-content { min-width: 0; }

.fw-service-content__hero-img {
    width: 100%;
    border-radius: var(--fw-radius);
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: var(--fw-shadow);
}
.fw-service-content__hero-img img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.fw-service-content__title {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: var(--fw-dark);
    margin: 0 0 18px;
}
.fw-service-content__intro {
    font-size: 15px;
    color: var(--fw-text);
    line-height: 1.75;
    margin-bottom: 32px;
}

/* Feature boxes row */
.fw-feature-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}
.fw-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--fw-grey-light);
    border-radius: var(--fw-radius);
    border-left: 4px solid var(--fw-pink);
    transition: box-shadow var(--fw-transition), transform var(--fw-transition);
}
.fw-feature-box:hover {
    box-shadow: var(--fw-shadow-hover);
    transform: translateY(-2px);
}
.fw-feature-box__icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--fw-white);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.fw-feature-box__icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.fw-feature-box__body {}
.fw-feature-box__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--fw-dark);
    margin: 0 0 6px;
}
.fw-feature-box__desc {
    font-size: 13px;
    color: var(--fw-text-light);
    line-height: 1.6;
    margin: 0;
}
.fw-feature-box__desc a { color: var(--fw-pink); text-decoration: none; }

/* Benefits section */
.fw-benefits-section { margin-bottom: 36px; }
.fw-benefits-section .fw-section-title {
    font-size: 24px;
    text-align: left;
    margin-bottom: 14px;
}
.fw-benefits-intro {
    font-size: 15px;
    color: var(--fw-text);
    line-height: 1.75;
    margin-bottom: 20px;
}
.fw-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    margin-bottom: 24px;
}
.fw-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--fw-dark);
    font-weight: 500;
}
.fw-benefit-item::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--fw-pink);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

/* Extra content area */
.fw-service-extra {
    font-size: 15px;
    color: var(--fw-text);
    line-height: 1.75;
}
.fw-service-extra p { margin-bottom: 16px; }

/* Editor / content area */
.fw-service-editor-content {
    font-size: 15px;
    line-height: 1.75;
    color: var(--fw-text);
    margin-bottom: 32px;
}
.fw-service-editor-content h2,
.fw-service-editor-content h3 { color: var(--fw-dark); margin-top: 28px; }
.fw-service-editor-content a { color: var(--fw-pink); }

body .et_pb_section_1_tb_footer h2.et_pb_module_heading {
    font-size: 1.5rem !important;
    color: #ff5a1f;
}
body footer .et_pb_blurb_container h5.text-secondary a {
    color: #1f2732 !important;
    font-size: 1.3rem !important;
}

html body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_contact_form_0_tb_footer form.et_pb_contact_form button.et_pb_contact_submit.et_pb_button {
    background: #FF5A1F !important;
    color: white !important;
}

body.et-db #et-boc .et-l .et_pb_section_0_tb_header.et_pb_section {
    background: rgba(33, 37, 41, 1) !important;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

/* Tablet */
@media ( max-width: 1024px ) {
    .fw-services-grid       { grid-template-columns: repeat(2, 1fr); }
    .fw-testimonials-grid   { grid-template-columns: repeat(2, 1fr); }
    .fw-pricing-grid        { grid-template-columns: repeat(2, 1fr); }
    .fw-process-steps       { flex-wrap: wrap; gap: 40px; }
    .fw-process-steps::before { display: none; }
    .fw-single-service__layout { grid-template-columns: 260px 1fr; gap: 28px; }
}

/* Mobile */
@media ( max-width: 768px ) {
    .fw-services-grid          { grid-template-columns: 1fr; }
    .fw-testimonials-grid      { grid-template-columns: 1fr; }
    .fw-pricing-grid           { grid-template-columns: 1fr; }
    .fw-single-service__layout { grid-template-columns: 1fr; }
    .fw-sidebar                { position: static; }
    .fw-feature-boxes          { grid-template-columns: 1fr; }
    .fw-benefits-grid          { grid-template-columns: 1fr; }
    .fw-hero__title            { font-size: 28px; }
    .fw-process-step__img-wrap { width: 110px; height: 110px; }
}

@media ( max-width: 480px ) {
    .fw-container        { padding: 0 16px; }
    .fw-archive-intro,
    .fw-services-grid-section { padding-left: 0; padding-right: 0; }
}
