@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Outfit:wght@100..900&display=swap');

html { scroll-behavior: auto; }

:root {
  --pad: 0.2em;
  --logo-w: 118px; /* match your logo column */
}

body, p, button, .button, pre, ul, ol {
    font-family: "Manrope", Arial, sans-serif !important;
    font-weight: 400;
    font-style: normal;
}
body {
    line-height: 1;
    background: #FFF;
    color: #1a1a1a;
    margin: 0;
}

header, main, footer, nav, article, aside, hgroup { display: block; }

a {
    text-decoration: none;
    cursor: pointer;
    color: #041687;
}

a:hover { color: #e2871d; }

main.main {
    padding: 0;
    position: relative;
    background: #FFF;
	min-width: 385px;
	overflow: hidden;
}

main.main p {
    line-height: 150%;
    margin: 1em 0;
}

nav.main {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    justify-content: center;
    z-index: 60;
    font-size: 1em;
    padding: 0;
    background-color: #041687;
    transition: background-color 2s ease;
    box-shadow: 0 12px 10px -12px rgb(0 0 0 / 75%);
}

/* === Container: symmetric, centered, no spill === */
nav.main .container {
	display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 100%;
    padding: .5em 1em;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
}

/* Left column: fixed logo width */
nav.main .logo {
  /* no fixed flex-basis column */
  display: flex;
  align-items: center;
  flex: 0 1 auto;         /* allow natural sizing, not forced */
}

nav.main .logo a {
	display: inline-flex;
    align-items: center;
    line-height: 1;
    border: .11em solid #fff;
    background-color: #040a3c4d;
    padding: 5px 0px;
 /*   border-radius: 15px;*/
}

/* Keep aspect; height will adjust via media queries */
nav.main #header-logo {
    height: 48px;
    width: auto;
    fill: #fff;
    vertical-align: middle;
    display: block;
}

/* Middle column: nav centered in remaining space */
nav.main .menu {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
  flex-wrap: nowrap;                              /* force single row */
  gap: clamp(0.35em, 1.6vw, 2em);                /* smooth spacing */
}

nav.main .item > a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 1;
  background: none;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 0.3em;
  transition: background 0.3s ease, color 0.3s ease;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1em;

  /* squeeze-friendly sizing */
  white-space: nowrap;                            /* never wrap labels */
  font-size: clamp(.74em, 1.2vw + .62em, 1em);   /* scales down smoothly */
  padding-inline: clamp(.18em, 0.6vw, .5em);     /* trims at small widths */
  padding-block: 1em;                             /* matches your original */
}

nav.main .item > a:hover { color: #e2e8e8; }

/* Right column: ghost spacer to mirror logo width (for centering) */
nav.main .container::after {
  content: "";
  flex: 0 0 var(--logo-w);
}

h2 {
  font-size: 2em;
  font-weight: 400;
  color: #3b3b3b;
  text-align: center;
  padding: .5em;
  margin: auto auto auto;
}

	h2 span.sub {
		font-weight: 700;
		font-style: italic;
		color: #e2871d;
	}

.hp-hidden {
  position: absolute !important;
  left: -10000px !important;
  width: 1px; height: 1px; overflow: hidden;
}
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.notice { margin:.75rem 0; padding:.75rem 1rem; border-radius:.5rem; text-align: center; color: #fff; }
.notice--ok  {
    background: #43b993;
    border: 1px solid #469172;
	margin: .5rem 0;
}
.notice--err {
    background: #af3d3d;
    border: 1px solid #7a251e;
}

ul.error-list { 
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	list-style: none;
}

/* If there are at least two li’s, add gap */
ul.error-list:has(> li + li) {
  gap: .5rem;                  /* adjust spacing */
}

input.field-error {
	outline: 3px solid #af3d3d !important;
	box-shadow: 0 0 0 3px rgba(23,94,142,.15) !important;
}

/* inner container */
.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

#products { background-color: #f7f7f7; }
#services { background: #e2e8e8; }
#about-us { background: #f7f7f7; }
#contact { background: #e2e8e8; }
#testimonials { background: #f7f7f7; }

.section-testimonials .testimonial-logo {
  display: flex;              /* vertical + horizontal centering */
  align-items: center;
  justify-content: center;
  min-height: 60px;           /* keeps a consistent band height */
  /* text-align no longer needed */
}

.section-testimonials .testimonial-logo svg {
  display: block;             /* removes baseline gap */
  max-width: 65%;
  height: auto;               /* keep aspect ratio */
}

/* was `.section-testimonials p` */
.section-testimonials blockquote {
  margin: 0;                 /* kill default blockquote margins */
}

	.section-testimonials blockquote p {
		color: #3b3b3b;
		font-size: 1.1em;
		font-style: italic;
	}

/* was `p.testimonial-signature` */
.section-testimonials figcaption.testimonial-signature {
  font-style: normal;
  padding-top: .5rem;
  border-top: 2px solid #175e8e;
}

/* was `p.testimonial-signature span` */
.section-testimonials figcaption.testimonial-signature > span {
  display: block;            /* stack name/title/company */
  margin: .5rem 0;
}
	.section-testimonials figcaption.testimonial-signature > span.name { font-weight: bold; }
	.section-testimonials figcaption.testimonial-signature > span.company { font-weight: bold; font-style: italic; }


/* base */
.cards { 
  display: grid;
}
.cards.two   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* card (now used on <figure>) */
.card {
  margin: 0;                 /* figures have default margins; reset */
  padding: 1.5rem;
}

.card.icon h3 {
	text-align: center;
    color: #e2871d;
}
.card.icon p { margin: 0; }

.card-list { padding-left: 1.5rem; list-style-type: square; }
.card-list li { margin: .5em 0; }
.card-list li::marker {
  color: #041687; /* your color */
}

/* --- critical fixes for your overflow issue --- */
*, *::before, *::after { box-sizing: border-box; }
.contact-form .form-grid > * { min-width: 0; }           /* let grid children shrink */
.contact-form input, .contact-form textarea {
  width: 100%;
  max-width: 100%;                                        /* don't bleed past gaps */
}

/* Section shell (matches your style) */
.section-company { background: #fff; }
.section-products { background: #e2e8e8; }

.section-company .card p {
    padding-top: 1rem;
	border-top: 2px solid #3b3b3b;
}

/* Grid: 2 cols -> 1 col */
.contact-form .form-grid {
	display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "left right";
	align-items: start;
	padding-top: 1rem;
}
.fs-left  { grid-area: left; }
.fs-right { grid-area: right; }
.form-actions { grid-area: actions; }

.header-blurb {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

div.footer-blurb {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

	div.footer-blurb.large { max-width: 900px; }
	div.footer-blurb.medium { max-width: 650px; }

	div.footer-blurb h3 {
		font-size: 1.5rem;
		font-weight: 600;
		font-style: italic;
		margin: 0 auto;
		color: #e2871d;
	}

/* Fieldset styling */
.fs {
    margin: 0;
    border: none;
    display: grid;
    gap: 1.5rem;
    padding: 0 0 2em 0;
}

.contact-form input,
.contact-form textarea {
	display: block;
	outline: none;
    margin: 0;
    border: none;
    box-shadow: none;
    width: 100%;
    font-family: inherit;
    background: #fafafa;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .2);
    border-radius: .25em;
    padding: 1em;
    font-size: 1em;
    color: #1a1a1a;
}
.contact-form textarea { resize: vertical; min-height: 9rem; }

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid #e2871d;
  box-shadow: 0 0 0 3px rgba(23,94,142,.15);
}

/* Actions */
.form-actions {
	display: flex;
	justify-content: center;
	border-top: 2px solid #071583;
	padding-top: 1.5rem;
	margin: 0;
}
.btn {
    appearance: none;
	font-size: 1rem;
    border-bottom: 2px solid #a46b2a;
    background: #e2871d;
    color: #fff;
    padding: .7rem 1.2rem;
    border-radius: .5rem;
    font-weight: 600;
    cursor: pointer;
    border-top: none;
    border-left: none;
    border-right: none;
}
	.btn svg {
		width: 14px;
		vertical-align: middle;
		margin-left: 2px;
		margin-top: -2px;
		fill: #fff
	}

.btn:hover { filter: brightness(1.05); }
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(23,94,142,.25);
}

div.content div.content-inner {
    margin: auto;
    color: #3b3b3b;
}
div.content div.content-inner.large { max-width: 1200px; }
div.content div.content-inner.medium { max-width: 950px; }
div.content div.content-inner.small { max-width: 750px; }
div.content div.content-inner.xtra-small { max-width: 650px; }

div.column-icon {
    text-align: center;
    height: 120px;
    align-content: flex-end;
}

	div.column-icon.small {
		height: 110px;
	}

	div.column-icon svg { height: 100%; width: 100%; }
	div.column-icon.medium svg { height: 90%; }
	div.column-icon.smaller svg { height: 85%; }
	div.column-icon.smallest svg { height: 80%; }
	div.column-icon.tiny svg { height: 65%; }



footer.footer {
    background: #3b3b3b;
    padding: 2em 1em;
    text-align: center;
}

footer.footer p {
    color: #a7a8a9;
    font-size: 0.9em;
	line-height: 150%;
	max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

footer.footer ul {
    list-style: none;
}
ul.social-links {
    max-width: 200px;
    padding: 0;
    margin: 1em auto;
    text-align: center;
}

footer.footer li {
    display: inline-block;
    padding: 0.5em;
}

ul.social-links li {
    display: inline-block;
    width: 31% !important;
    padding: 0;
    margin: 0;
}

ul.social-links li a {
    display: block;
    width: 100%;
    color: #FFF;
}

	ul.social-links li a svg {
		fill: #fff;
		width: 30px;
	}

ul.social-links li a:before {
    font-size: 1.6em;
    text-align: center;
}

ul.social-links li a span {
    display: none;
}

footer.footer ul.legal {
    font-size: 0.8em;
    margin-top: 2em;
	padding: 0;
}

footer.footer ul.legal a { color: #AAA; }

	footer.footer ul.legal a:hover { color: #e2871d; text-decoration: underline; }

/* DROP-IN REPLACEMENT */
.menu-footer.contact {
  /* desktop: 3-column grid: left | • | right */
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
  align-items: center;
  justify-items: stretch;
  grid-auto-flow: row;          /* ensure one row by default */
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;                  /* base color; links can inherit if you want */
}

/* centered dot (desktop only) */
.menu-footer.contact::before {
  content: "•";
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  line-height: 1;
  opacity: .85;
}

/* place items on the same row as the dot */
.menu-footer.contact li { grid-row: 1; padding: .5em 0; }
.menu-footer.contact li:first-child { grid-column: 1; justify-self: end; }
.menu-footer.contact li:last-child  { grid-column: 3; justify-self: start; }

/* links */
.menu-footer.contact a {
  display: inline-block;
  padding: 0 .9rem;             /* left/right padding for each link */
  text-decoration: none;
  color: #e2871d;               /* or `inherit` to use the container color */
}
.menu-footer.contact a:hover { text-decoration: underline; }



/* Hard stop while debugging */
html, body { margin: 0; overflow-x: clip; }
*, *::before, *::after { box-sizing: border-box; }

/* NAV: allow flex children to actually shrink */
nav.main .container, 
nav.main .menu { min-width: 0; }

/* SVG/logo + media must not force width */
#header-logo { max-width: 100%; height: auto; display: block; }
.hero img, .hero video { max-width: 100%; width: 100%; height: auto; display: block; }

/* If you used any 100vw on sections, cap them */
.hero, .video-slides, #navigation { width: 100%; max-width: 100%; }



.video-slides-intro .intro-text {
    z-index: 1;
    color: #FFF;
    text-align: center;
    padding: 1rem;
    margin-top: 2em;
    font-size: 1.2rem;
    animation: growText 6s ease forwards;
    transform: scale(0.8);
    opacity: 0;
}

.paragraph.text-center {
    text-align: center;
}
.paragraph.top-paragraph {
    padding-top: 6em !important;
    transition: padding 0.7s ease;
}
.paragraph--type--paragraph {
    padding: 2rem 1rem;
    z-index: 1;
}
.paragraph {
    position: relative;
}

.paragraph-id-4197160013 .content {
    height: 40vh;
}
.paragraph--type--paragraph .content {
    max-width: 1200px;
    margin: auto;
    display: flex;
}

.paragraph .loops {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.paragraph--type--paragraph.photo-none .field_photo {
    display: none;
}

.paragraph--type--paragraph .field_photo {
    padding: 1rem;
}

.paragraph--type--paragraph.svg-none .field_icon {
    display: none;
}

.paragraph--type--paragraph.svg-none .field_paragraph_body {
    width: 100%;
}
.paragraph--type--paragraph.photo-none .field_paragraph_body {
    width: 100%;
}
.paragraph--type--paragraph .field_paragraph_body {
    padding: 1rem;
}

.paragraph--type--paragraph .field_paragraph_body *:first-child {
    margin-top: 0;
}

.video-slides video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.paragraph-id-4197160013 .slide {
/*    padding-top: 10vh;*/
}

.video-slides .slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    text-align: center;
    transition: opacity 1s ease, transform 1s ease;
    visibility: hidden;
    pointer-events: none;
}



main.main .field_paragraph_body .button:last-of-type {
    margin-bottom: 0;
}
.paragraph--type--paragraph .field_paragraph_body *:first-child {
    margin-top: 0;
}
.button.orange, .button.button--primary, .form-actions input.button:first-of-type {
    background: #041687;
    color: #FFF !important;
}
.button {
    display: inline-block;
    margin: 0 0 1em 0;
    font-size: 1em;
    padding: 0.75em 1em;
    text-align: center;
    min-width: 11em;
    font-weight: bold;
    color: #da0000 !important;
    background: #dfd5c8;
    border-radius: 1.5em;
    cursor: pointer;
    border: 0;
    line-height: 1em;
}
button, .button {
    font-weight: 600 !important;
    text-shadow: none;
}

.paragraph--type--paragraph .field_paragraph_body *:first-child {
    margin-top: 0;
}
.paragraph.text-center h1 {
    text-align: center;
}

.slide h1 {
  background-color: #2b2b2b5c;
  border: 5px solid #e2871d;
  padding: clamp(1rem, 2vw, 2rem) clamp(2rem, 6vw, 5rem);
  border-radius: 5rem;
  white-space: nowrap;
  display: inline-block;
  font-size: clamp(0.8rem, 4vw, 2.8em);  /* shrink faster at small widths */
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 12px 10px -12px rgb(0 0 0 / 75%);
  letter-spacing: 0.1rem;
  box-sizing: border-box;
  max-width: calc(100vw - 2rem);
  margin-inline: auto;
}

.slide h1 .cap { font-size: 1.25em; }

.video-slides { position: relative; }
.video-slides video {
  display: block;
  width: 100%;
  height: auto;
  position: relative;   /* stays in normal flow */
  z-index: 0;
}

/* Slides on top of video */
.video-slides .slide {
  transform: translate(-50%,-50%);
  z-index: 3;
}

/* Intro overlay ABOVE video, BELOW slides, fully transparent bg */
.video-slides-intro {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  background: transparent !important;
}
.video-slides-intro .intro-canvas {
  width: 100%; height: 100%;
  display: block; background: transparent !important;
}

/* Fade out the overlay, not the layout */
.video-slides-intro.end { opacity: 0; transition: opacity .6s ease; }


.video-slides-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("/assets/images/intro-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform-origin: center;

  /* animate from 1.2 down to 1.0 and keep the end state */
  animation: bgZoomShrink 3600ms ease-out forwards;
  will-change: transform;
  backface-visibility: hidden;
}

/* keyframes: 1.2 → 1.0 */
@keyframes bgZoomShrink {
  from { transform: scale(1.2); }
  to   { transform: scale(1); }
}

.paragraph-id-4197160013 .content {
    height: 40vh;
}

.paragraph--type--paragraph .content {
    max-width: 1200px;
    margin: auto;
    display: flex;
}

/* Fill that 40vh box exactly */
#hero .video-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;          /* extra safety */
}

/* Override the global video rule */
#hero .video-slides > video {
  position: absolute; inset: 0 !important;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;                /* below overlays, above page bg */
}

/* Intro overlay is clipped inside the box */
#hero .video-slides-intro {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  background: transparent !important;
  overflow: hidden;          /* important when ::before scales */
  contain: paint;            /* prevents painting outside */
}
#hero .video-slides-intro .intro-canvas {
  display: block; width: 100%; height: 100%;
}




/* The overlay is the bounds */
#hero .video-slides-intro {
  position: absolute; inset: 0;
  display: grid; place-items: center;   /* center contents */
  overflow: hidden;                     /* clip anything */
  z-index: 2; pointer-events: none;
}

/* Hard bounds + responsive sizing for the intro block */
.video-slides-intro .intro-text {
  position: relative;
  z-index: 3;
  box-sizing: border-box;
/*  max-width: min(90vw, 630px); */
  width: 100%;
  padding: 1rem clamp(1rem, 4vw, 2rem); /* safe side padding */
  margin: 0 auto;                       /* center */
  text-align: center;
  color: #fff;

  /* start state (small + invisible) */
  opacity: 0;
  transform: scale(.92);
  transform-origin: center;

  /* only animate AFTER overlay is shown */
  animation: growText 3600ms ease both;  /* 0.8s is plenty */
}

/* Make inner pieces responsive too */
#hero .video-slides-intro .intro-text h1 {
    font-weight: 600;
    font-size: clamp(1rem, 5vw, 2.8em);
    text-wrap: balance;
    font-size: 2.8em;
    font-family: "Outfit", sans-serif;
    text-transform: lowercase;
	letter-spacing: .1rem;
}

	#hero .video-slides-intro .intro-text h1 span {
		display: block;
		font-size: 2.3em;
		text-transform: uppercase;
	}

/* Cleaner animation: small -> full size (not huge -> shrink) */
@keyframes growText {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* When JS adds .end, fade out the block before removal */
#hero .video-slides-intro.end .intro-text {
  animation: fadeOut 750ms ease forwards;
}
@keyframes fadeOut { to { opacity: 0; transform: scale(.98); } }




/* Start relaxing the ghost; tiny logo reduction */
@media (max-width: 900px) {
  nav.main .container::after { flex-basis: 60px; }
  nav.main #header-logo { height: 34px; }
  
  .cards.two,
  .cards.three,
  .cards.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  
  #hero-privacy-policy { padding-top: 4.2rem !important; }
  #hero-privacy-policy h1 { font-size: 3em !important; }
}

/* Collapse to one column */
@media (max-width: 800px) {
  .contact-form .form-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "right";
  }
  
  .fs { padding-bottom: 1.5rem; }
  
  .contact-form .form-grid { gap: 0; }
}

/* Kill the ghost entirely; tighten pill padding */
@media (max-width: 720px) {
  nav.main .container::after { flex-basis: 0; }
  nav.main .container { padding: .22em .6em; }
}

/* collapse to 1 col <= 600px */
@media (max-width: 600px) {
  .cards,
  .cards.two,
  .cards.three,
  .cards.four { grid-template-columns: 1fr; }
  
  .feature-row {
    grid-template-columns: 1fr;      /* stack */
    justify-items: center;           /* center icon */
    text-align: center;              /* center text on small screens */
  }
  .feature-row.row--flip .feat-media,
  .feature-row.row--flip .feat-text { grid-column: initial; }
  .feat-text { text-align: inherit; }
  
	#hero .video-slides-intro .intro-text h1 {
		font-size: 2em;
	}
	
	#hero-privacy-policy { padding-top: 3.5rem !important; }
	#hero-privacy-policy h1 { font-size: 2.8em !important; }
}

/* === Mobile: stack links, hide the dot === */
@media (max-width: 520px) {
  .menu-footer.contact {
    display: flex;                /* switch from grid to flex */
    flex-direction: column;       /* stack vertically */
    align-items: center;          /* center horizontally */
    justify-content: center;
    gap: .45rem;
    width: 100%;
  }

  .menu-footer.contact::before { content: none; } /* hide the dot */

  .menu-footer.contact li {
    margin: 0;
  }

  .menu-footer.contact a {
    display: inline-block;
    text-align: center;           /* center the text inside the link */
    padding: 0 .4rem;             /* optional tighter padding */
  }
}

/* Pre-pinch tightening */
@media (max-width: 480px) {
  nav.main #header-logo { height: 28px; }  /* frees space left */
  nav.main .menu { gap: .4em; }            /* tighter gaps */
  nav.main .item > a { letter-spacing: -.01em; }
  
	#hero .video-slides-intro .intro-text h1 {
		font-size: 1.7em;
	}
	
	#hero-privacy-policy { padding-top: 3rem !important; }
	#hero-privacy-policy h1 { font-size: 2.5em !important; }
}

/* Critical pinch zone ~455→442px: keep one line */
@media (max-width: 455px) {
  nav.main .container { padding: .14em .5em; }
  nav.main .menu { gap: .32em; }
  nav.main .item > a {
    font-size: .76em;                      /* enough to avoid wrap */
    padding-inline: .18em;
  }
  
  .card { padding: 1rem; }
  
	#hero .video-slides-intro .intro-text h1 {
		font-size: 1.5em;
	}
}

/* If some devices still push a wrap at ~442px, enable this final squeeze */
@media (max-width: 442px) {
  nav.main #header-logo { height: 26px; }
  nav.main .item > a { font-size: .74em; }
  
  h2 { font-size: 1.75em; }
  
 	#hero .video-slides-intro .intro-text h1 {
		font-size: 1.1em;
	}
}
