/**
 * Main Styles - Avraham Theme
 *
 * @package Avraham_Theme
 */

/* ========================================
   CSS Variables
   ======================================== */
   :root {
    /* Colors */
    --color-primary: #153C6D !important;
    --color-primary-dark: #0e2a4d;
    --color-primary-light: #1e4f8a;
    --color-secondary: #D6885B !important;
    --color-secondary-dark: #c06f42;
    --color-secondary-light: #e4a57d;

    /* Neutrals */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;

    /* Accent Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-info: #3b82f6;

    /* Typography */
    --font-primary: 'Noto Sans Hebrew', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Noto Sans Hebrew', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Font Sizes - Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3rem);
    --text-5xl: clamp(3rem, 2.25rem + 3.75vw, 4rem);

    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Container */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1400px;
    --container-3xl: 1600px;
    --container-padding: clamp(1rem, 3vw, 2rem);

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    --transition-slower: 500ms ease;

    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;

    /* Header */
    --header-height: 80px;
    --header-height-mobile: 70px;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: var(--leading-normal);
    color: var(--color-gray-800);
    background-color: #FAF2ED;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}

/* Links */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
ul, ol {
    list-style: none;
}

/* Buttons */
button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: var(--color-gray-900);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
    margin-bottom: var(--space-4);
}

p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Layout
   ======================================== */
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    /* flex: 1; */
    margin-top: var(--header-height);
}

@media (max-width: 768px) {
    .site-main {
        margin-top: var(--header-height-mobile);
    }
}

.container {
    width: 100%;
    max-width: var(--container-2xl);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container-sm { max-width: var(--container-sm); }
.container-md { max-width: var(--container-md); }
.container-lg { max-width: var(--container-lg); }
.container-xl { max-width: var(--container-xl); }

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    line-height: var(--leading-none);
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
    color: var(--color-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ========================================
   Icons
   ======================================== */
.icon {
    display: inline-block;
    width: auto;
    height: auto;
    vertical-align: middle;
    fill: currentColor;
}

/* ========================================
   Utility Classes
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.hidden { display: none !important; }
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Sticky quick actions
   -------------------------------------------------------------- */
.sticky-actions {
    position: fixed;
    left: 16px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    pointer-events: auto;
}

.sticky-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    max-width: 117px;
    padding: 10px 7px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: inherit;
    gap: 8px;
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.sticky-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.sticky-action-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.sticky-action-label {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
}

@media (max-width: 768px) {
    .sticky-actions {
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: row;
        gap: 0;
        background: #fff;
        /* padding: 6px 0 env(safe-area-inset-bottom); */
        box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.12);
    }

    .sticky-action {
        flex: 1 1 0;
        border-radius: 0;
        min-width: 0;
        box-shadow: none;
        padding: 4px 6px;
        gap: 8px;
        border-right: 1px solid rgba(0, 0, 0, 0.06);
    }

    .sticky-action:last-child {
        border-right: none;
    }

    .sticky-action-icon {
        width: 30px;
        height: 30px;
    }

    .sticky-action-label {
        font-size: 13px;
    }
}

.animate-fadeIn { animation: fadeIn var(--transition-base) ease forwards; }
.animate-fadeInUp { animation: fadeInUp var(--transition-slow) ease forwards; }
.animate-fadeInDown { animation: fadeInDown var(--transition-slow) ease forwards; }

/* ========================================
   Service Category Archive
   ======================================== */
.service-archive {
    background: #f7f2ec;
    color: #1b1b1b;
}

.service-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(0, 3vw, 32px) var(--container-padding, 24px);
}

.service-archive-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(32px, 5vw, 64px);
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.service-archive-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 75%);
}

.service-hero-overlay { display: none; }

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
}

.service-breadcrumb {
    position: absolute;
    top: clamp(18px, 4vw, 28px);
    right: clamp(18px, 4vw, 32px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    font-size: 14px;
    z-index: 3;
}

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

.service-breadcrumb a:hover {
    color: var(--color-secondary, #d6885b);
}

.service-hero-text {
    max-width: 720px;
}

.service-hero-title {
    font-size: clamp(32px, 4vw, 46px);
    margin: 0 0 10px;
    font-weight: 800;
    color: #fff;
}

.service-hero-desc {
    margin: 0;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.service-archive-intro {
    padding: clamp(28px, 4vw, 48px) 0;
    padding-bottom: 0;
}

.service-intro-inner {
    text-align: center;
    margin-bottom: 2rem;
}

.service-intro-title {
    font-size: clamp(26px, 3.5vw, 34px);
    margin: 0 0 12px;
    color: #102136;
}

.service-intro-desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #4c4c4c;
}

.service-archive-grid {
    padding: clamp(0, 4vw, 64px) 0;
}

.service-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: clamp(20px, 3vw, 32px);
}

.service-archive-empty {
    padding: clamp(48px, 6vw, 96px) 0;
    text-align: center;
}

.service-archive-empty p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.service-archive-slider {
    padding: clamp(12px, 3vw, 28px) 0 clamp(32px, 4vw, 48px);
}

.service-slider {
    position: relative;
    overflow: hidden;
}

.service-slider-track {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    transition: transform 0.4s ease;
    will-change: transform;
}

.service-card {
    min-width: min(263px, 100%);
    position: relative;
    display: block;
    /* border-radius: 16px; */
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(0,0,0,0.08);
    /* border: 1px solid rgba(0,0,0,0.04); */
    color: white;
    text-decoration: none;
    background: #000;
}

.service-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #f0f0f0;
    overflow: hidden;
    min-height: 19rem;
}

.service-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.service-card-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #f7f2ec 0%, #e7dfd3 100%);
}

.service-card-line {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 5px;
    background: linear-gradient(90deg, #F6B38D 0%, #F9B26B 100%);
    z-index: 100;
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    /* background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 70%); */
    color: #fff;
    gap: 8px;
    background: linear-gradient(180deg, rgba(33, 56, 68, 0.00) 0%, rgba(33, 56, 68, 0.90) 100%);
}

.service-card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    color: white;
    text-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.service-card-excerpt {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    padding: 8px 0;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.service-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #1f1f1f;
    background: transparent;
    color: #1f1f1f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s ease;
}

.service-nav-btn:hover:not(.disabled):not(:disabled) {
    background: #1f1f1f;
    color: #fff;
}

.service-nav-btn.disabled,
.service-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.service-archive-content {
    /* padding: clamp(24px, 4vw, 48px) 0 clamp(40px, 6vw, 72px); */
}

.service-term-content {
    /* background: #fff; */
    border-radius: 16px;
    padding: clamp(20px, 3vw, 32px);
    /* box-shadow: 0 18px 36px rgba(0,0,0,0.07); */
    line-height: 1.8;
}

.service-term-content h2,
.service-term-content h3,
.service-term-content h4 {
    margin: 24px 0 12px;
    color: #0f2238;
}

.service-term-empty {
    margin: 0;
    color: #666;
}

@media (max-width: 1024px) {
    .service-archive-hero {
        min-height: 320px;
    }
}
.archive  .contact-form-section {

    margin-top: 3rem;
}
@media (max-width: 768px) {
    .service-archive-hero {
        background-image: var(--hero-image-mobile, var(--hero-image));
        padding: 32px 20px 40px;
    }

    .service-breadcrumb {
        padding: 8px 12px;
        font-size: 13px;
    }

    .service-hero-title {
        font-size: clamp(26px, 6vw, 32px);
    }

    .service-hero-text {
        max-width: none;
    }

    .service-slider-track {
        gap: 16px;
    }

    .service-card {
        min-width: 82vw;
    }

    .service-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-archive-grid {
        padding: 32px 0;
    }
}
.faq-section,
.video-section,
.about-section.about-bg-cream,
.features-section.features-bg-cream,
.blog-section,
.team-section,
.reviews-section {
    background: #FAF2ED !important;

}


section.page-intro {
   background: #FAF2ED;
}

.flexible-page {
   background: #FAF2ED;
   position: relative;
}

section.page-intro {
   text-align: center;
   padding: 2rem 0;
}

nav.page-breadcrumb {
    padding: 1rem;
    font-size: 0.9rem;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

a.breadcrumb-link {
    color: black;
}

span.breadcrumb-current {
    color: #ffffff91;
}
.page-id-514 .story-card{
  visibility: visible;
}
@media (min-width: 768px) {
  .tax-service-category .service-archive-hero {
    min-height: 150px !important;
    padding-bottom: unset !important;
}
  .tax-service-category .service-archive-slider {
    margin-top: 5rem !important;
}
.tax-service-category    .service-archive-slider {
        margin-top: 1rem !important;
    }
.service-term-content {

    max-width: 940px;
    margin: 0 auto;
}
}
.single-content ul {

    list-style: disc;
}
/* ========================================
   Sample Text Page (Accessibility Statement)
   ======================================== */
.sample-text-page {
    background: #FAF2ED;
    min-height: 100vh;
    padding: clamp(80px, 10vw, 120px) 0 clamp(48px, 6vw, 80px);
    position: relative;
}

.sample-text-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--container-padding, 24px);
}

.sample-text-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--color-primary, #153C6D);
    margin: 0 0 clamp(24px, 4vw, 40px);
    text-align: center;
}

.sample-text-content {
    background: transparent;
    line-height: 1.9;
    font-size: clamp(15px, 1.8vw, 17px);
    color: #333;
}

.sample-text-content p {
    margin-bottom: 1.25em;
}

.sample-text-content h4 {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: var(--color-primary, #153C6D);
    margin: 2em 0 0.75em;
}

.sample-text-content h4:first-child {
    margin-top: 0;
}

.sample-text-content ul {
    list-style: disc;
    padding-right: 1.5em;
    margin: 1em 0 1.5em;
}

.sample-text-content ul li {
    margin-bottom: 0.5em;
}

.sample-text-content ul li p {
    margin: 0;
}

.sample-text-content strong {
    font-weight: 700;
    color: #1a1a1a;
}

.sample-text-content a {
    color: var(--color-primary, #153C6D);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sample-text-content a:hover {
    color: var(--color-secondary, #D6885B);
}

/* Breadcrumb for sample-text-page */
 .page-breadcrumb {
    position: absolute;
    top: 10px;
    right: var(--container-padding, 24px);
    padding: 0;
    font-size: 14px;
    z-index: 1;
}

 .page-breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 6px;
}

 .breadcrumb-link {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

 .breadcrumb-link:hover {
    color: var(--color-secondary, #D6885B);
}

 .breadcrumb-separator {
    display: flex;
    align-items: center;
    color: rgba(0, 0, 0, 0.5);
}

 .breadcrumb-current {
    color: rgba(0, 0, 0, 0.5) !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .contact-map-form-title {
    font-size: clamp(24px, 1.4vw, 26px) !important;

}
    .sample-text-page {
        padding-top: clamp(30px, 8vw, 80px);
    }

    .sample-text-page .page-breadcrumb {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 1.5rem;
        padding: 0 var(--container-padding, 24px);
    }

    .sample-text-inner {
        padding-top: 0;
    }

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

    .sample-text-content ul {
        padding-right: 1.25em;
    }
}
.single-service .single-date{
  display: none;
}
.sticky-actions {
    display: none !important;
}

.sticky-actions.visible {
    display: flex !important;
}

@media (max-width: 768px) {
  .header-actions .header-social{
    display: flex !important;
    gap: unset !important;
  }
  .header-cta{
    display: none;
  }
    .sticky-actions.visible {
        display: flex !important;
        flex-direction: row;
        justify-content: space-around;
    }
}
