@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(fonts/Manrope.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: 'Manrope';
  font-feature-settings: normal;
}

body {
  margin: 0;
  line-height: inherit;
  font-family: 'Manrope';
 }

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: inherit;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp, pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Upload file */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

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

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

/* Placeholder */
input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}
button,
[role="button"] {
  cursor: pointer;
}
:disabled {
  cursor: default;
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

img,
video {
  max-width: 100%;
  height: auto;
}
[hidden] {
  display: none;
}


:root {
  --border-blue-500: #3b82f6;
  --border-green-500: #10b981;
  --border-purple-500: #8b5cf6;
  --border-orange-500: #f59e0b;
  --primary: #4361ee;
  --primary-light: #4cc9f0;
  --secondary: #3a0ca3;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --gray: #6c757d;
  --success: #4bb543;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 100px;
  height: 100px;
  border: 5px solid #ddd;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== Base Styles ===== */
@keyframes float {
    0%, 100% {
      transform: translateY(0) rotate(30deg);
    }
    50% {
      transform: translateY(-20px) rotate(30deg);
    }
  }
  .animate-float {
    animation: float 6s ease-in-out infinite;
  }
  .animate-float-delay {
    animation: float 6s ease-in-out 1s infinite;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fade-in-up {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out;
}

@keyframes slide-down {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.animate-slide-down {
  animation: slide-down 0.5s ease-out forwards;
}

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

.animate-count-up {
  animation: countUp 0.6s ease-out forwards;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-40px) translateX(15px); }
  100% { transform: translateY(0) translateX(0); }
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(15deg); }
  100% { transform: translateX(100%) rotate(15deg); }
}

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

@keyframes shimmer {
  0% { background-position: -468px 0 }
  100% { background-position: 468px 0 }
}
        
        
@keyframes iconShow {
 0% { opacity: 0; transform: scale(0.8); }
 10% { opacity: 1; transform: scale(1.05); }
 90% { opacity: 1; transform: scale(0.95); }
 100% { opacity: 0; transform: scale(0.8); display: none; }
}
        
@keyframes gradient {
 0% { background-position: 0% 50%; }
 50% { background-position: 100% 50%; }
 100% { background-position: 0% 50%; }
}

@keyframes gradient-x {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-gradient-x {
  background-size: 200% 200%;
  animation: gradient-x 6s ease infinite;
}

.animate-spin-slow {
  animation: spin-slow 8s linear infinite;
}

.shimmer-animation {
  animation: shimmer 1.5s infinite linear;
  background: linear-gradient(to right, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
  background-size: 800px 104px;
  position: relative;
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.backdrop-blur-sm {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

svg[data-icon="spin"] {
  animation: spin 0.7s linear infinite; /* faster spin */
  transform-origin: center;
}


body {
  font-family: 'Manrope', sans-serif;
  background:#fff;
  margin: 0;
  padding: 0;
}


body::-webkit-scrollbar,html ::-webkit-scrollbar{
    width: 8px;
    height: 5px;
}
body::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

body::-webkit-scrollbar-corner {
    background: transparent;
}

body::-webkit-scrollbar-thumb,html ::-webkit-scrollbar-thumb{
    background:#0f172a;
    border: 0px none rgb(245, 246, 247);
    border-radius: 0px;
    border-left:2px solid #fff;
    border-top:10px solid #fff;
}

body::-webkit-scrollbar-track {
    background: white;
    border: 0px none rgb(255, 255, 255);
    border-radius: 0px;
}

body::-webkit-scrollbar-thumb:hover {
    background:#999;
}

body::selection {
    color: #fff;
    background: #1890ff;
}


h6 {
    font-size: 25px !important;
    font-weight:bold !important;
    text-transform:uppercase;
    font-weight:bold;
    position: relative; 
    display: inline-block; 
    padding-bottom: 8px; 
    margin-bottom:50px;
    letter-spacing:2px;
    text-align:center;
}

h6::after {
  content: "";
  position: absolute;
  left: 50%;  
  bottom: 0;
  width: 50px;
  height: 5px;  
  background-color: #333;
  transform: translateX(-50%);  
  transition: all 0.3s ease;  
}

h2 {
    font-size: 25px !important;
    font-weight:bold !important;
    text-transform:uppercase;
    font-weight:bold;
    position: relative; 
    display: inline-block; 
    padding-bottom: 8px; 
    margin-bottom:30px;
    letter-spacing:2px;
}

h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px; 
    height: 5px; 
    background-color: #ff0080; 
}

.overflow-x-auto::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

.overflow-x-auto {
    scrollbar-width: none !important;
}

.overflow-x-auto {
    -ms-overflow-style: none !important;
}

.overflow-x-auto {
    overflow: -moz-scrollbars-none !important;
}

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.line-clamp-none {
  overflow: visible;
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-line-clamp: none;
}

main {
  padding:20px;
}

/* ===== Layout Components ===== */
.nav a{
      position: relative;
}

.nav a:after {
      content: '';
      position: absolute;
      width: 0;
      height: 3px;
      bottom: -2px;
      left: 0;
      background-color:#ff0080;
      transition: width 0.3s ease;
}

.nav a:hover:after {
      width: 100%;
}

/* Header */
header {
  position: relative;
  min-height:100vh;
  height: 100%;
  margin:0;
  padding:0;
  padding-top:8px;
  padding-left:8px;
  width: 100%;
  overflow: hidden;
  background:#fff;
}
.bg-h-screen {
  min-height:100vh;
  height: 100%;
  width: 100%;
  margin:0;
  padding:0;
  padding-top:8px;
  padding-left:8px;
  border-top-left-radius:15px;
  border-top-right-radius:15px;
  overflow: hidden;
}
.gradient-bottom-right {
  background-image: linear-gradient(to bottom right, currentColor) !important;
}

.start-indigo {
  background-image: linear-gradient(to bottom right, #4d21b7, transparent) !important;
}

.middle-purple {
  background-image: linear-gradient(to bottom right, #ff8080, #ff8080, transparent) !important;
}

.end-yellow {
  background-image: linear-gradient(to bottom right, #4d21b7, #4d21b7, #ffbb00) !important;
}

.gradient-enzihost {
  background-image: 
    linear-gradient(to bottom right, #4d21b7, #ff8080, #5c60f5, #8957ff, #ffbb00) !important;
  background-size: 300% 300% !important;
  animation: gradientFlow 6s ease infinite !important;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.costume::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
    background-image: radial-gradient(#7d77cd 1px,transparent 0);
    background-size: 16px 16px;
    background-position: -19px -19px;
    -webkit-mask-image: linear-gradient(
237deg,black 0,transparent 60%);
    mask-image: linear-gradient(237deg,black 0,transparent 60%);
    height: calc(100% - 16px);
    width: 40%;
   z-index: 1;
}


.bg-orange-7000 {
  position:relative;
}

.bg-green-child-700 {
  background:#c6fc2b;
}

.bg-poleng-700 {
  position:relative;
  min-height:100vh;
  height: 100%;
  margin:0;
  padding:0;
  padding-top:8px;
  padding-left:8px;
  width: 100%;
  overflow: hidden;
  background:#0f172a;
  border-bottom-left-radius:15px;
  border-bottom-right-radius:15px;
}

.poleng-h-screen {
  min-height:100vh;
  height: 100%;
  width: 100%;
  margin:0;
  padding:0;
  padding-top:8px;
  padding-left:8px;
}
.bg-orange-7000::before {
  content: "";
  position: absolute;
  top:-30px;
  height:44px;
  left: 0;
  right: 0;
  bottom: 0;
  background:#fff6ea;
  border-top-left-radius:30px;
  border-top-right-radius:30px;
  z-index: 1;
}

.ren-my-pro {
  position: relative;
  min-height:100vh;
  height: 100%;
  margin:0;
  padding:0;
  width: 100%;
  overflow: hidden;
  background:#fff;
}

.ren-my-pro-screen {
  min-height: 100vh;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 15px;
  overflow: hidden;
  background-image:
    linear-gradient(
      to bottom,
      rgba(3, 7, 18, 0.95),  
      rgba(3, 7, 18, 0.4),  
      transparent            
    ),
    url(../../assets/header/2.jpeg);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;  
}
/* .blog::before {
  content: "";
  position: absolute;
  top:-40px;
  height:50px;
  width:100%;
  left: 0;
  right: 0;
  bottom: 0;
  background:#fff;
  border-top-left-radius:50px;
  border-top-right-radius:50px;
  z-index: 1;
} */

/* Navigation */
.fixed-nav {
  position: fixed;
  width: 100%;
  z-index:40;
  transition: all 0.3s ease;
  background-color:#fff;
}

.nav-transparent {
  background-color:transparent;
}

/* Language Switcher */
.language-switcher {
  width: 100%;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-btn {
  border: 1px solid #333;
  background-image: linear-gradient(
310deg,#141727,#3a416f);
  padding: 8px 25px;
  border-radius: 9999px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  outline: none;
  margin-left: 10px;
  backdrop-filter: blur(8px);
}

.language-btn.active {
  color: #2563eb;
  font-weight: 600;
  background: #fff;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background:#fff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 1.3s ease;
  z-index:60;
  overflow:hidden;
}

.sidebar.open {
  right: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  display: none;
}

.overlay.active {
  display: block;
}

.d-flex-3{
  display: flex;
  gap: 10px;
}
.h-dekstop{
  height: 60vh;
}

/* ===== Media Queries ===== */
@media (min-width: 350px) and (max-width: 1300px) {
    
   header {
    padding-right: 8px;  
   }
    
  .d-none-md {
    display: none !important;  
    }
  
  .bg-h-screen {
    padding-right: 8px;  
  }
   .bg-poleng-700 {
    padding-right: 8px; 
    padding-top: 8px;
  }
  .poleng-h-screen {
    padding-right: 8px; 
    padding-top: 8px;
  }
   .ren-my-pro {
    padding:0  !important;  
  }
  .ren-my-pro-screen {
    padding:0  !important;  
    border-radius:0 !important;  
    background-attachment: scroll !important;  
  }
  .h-dekstop{
    height: 55%;
  }
    
  .line-clamp-sm {
      overflow: hidden;
      font-size:25px;
      font-weight:bold;
      color:#fff;
  }
    
  .sidebar {
    width: 100%;
    right: -100%;
  }

  .language-switcher {
      position: absolute;
      right:40px;
      top:20px;
   }
    
  .go-green {
     border-radius:0 !important;
     margin:20px auto;
    }
    
  .whychooseus::before {
    display:none;
    }
  .d-flex-card {
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch;  
    scroll-behavior: smooth;  
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

.rent-your-room {
    height:100%;
}

.rent-your-room h1{
  margin-top:10px;
 }

}

/* ===== Utility Classes ===== */
.bg-img-par {
  position: relative;
  height: 100%;
  width: 100%;
  background-color: #111b21; 
  background-image: 
    linear-gradient(rgba(17, 27, 33, 0.7), rgba(17, 27, 33, 0.7)),
    url('../../assets/header/header.jpg');
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius:20px;
}

.rent-your-room {
  position:relative;
  margin-top:60px;
  margin-bottom:60px;
  height:100vh;
}

.rent-your-room h1{
  margin-top:30px;
 }


.investment {
  position: relative;
  background: url(../../assets/header/header-2.jpg) no-repeat center top;
  background-size: cover;
  height:100vh;
  margin:0;
  padding:0;
  width: 100%;
  overflow: hidden;
}

.transition-custom {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-gradient-primary {
  background: -webkit-gradient(linear, left top, right top, from(rgba(240, 150, 255, 0.15)), color-stop(51%, rgba(191, 200, 252, 0.15)), to(rgba(187, 148, 255, 0.15)));
  border:5px solid #fff;
  border-radius:25px;
 
}

.bg-gradient-secondary {
  background-image: linear-gradient( 310deg,#141727,#3a416f);
}

.btn-gradient-primary {
   background-image: linear-gradient(310deg, #7928ca, #2563eb);
}

.text-gradient-primary {
  display: inline-block; 
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(310deg, #7928ca, #ff0080);
  color: transparent; 
}

.costume-gradient-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(96, 104, 117, 0.60);
  backdrop-filter: blur(5px);
  z-index: 1;
  border-radius: inherit;
}

.bg-line-category {
  background: url('../../assets/header/categories.jpg');
  background-position: left center;
  background-size:cover;
  background-repeat: no-repeat;
}

.partners {
  position: relative;
  height: 100%;
  width: 100%;
  background-color: #fff; 
  background-image: url('../../assets/footer/footer-grow.png');
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}

.partners::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height:35px;
  background:#fff;
  z-index: 1;
  border-bottom-left-radius:30px;
  border-bottom-right-radius:30px;
}

.show-overlay{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
background: linear-gradient( 
184deg, #ffffff, rgb(249 250 251 / 68%) 51%, #f9fafb );
    z-index: 1;
}

.qr {
  position: relative;
  height: 100px;
  width:100px;
  object-fit:cover;
}

.go-green {
  position: relative;
  width: 100%;
  margin:50px auto;
}

.testimonial {
  background:transparent;
  height:100%;
  }

footer {
  position: relative;
  height: 100%;
  width: 100%;
  background-image:linear-gradient(rgb(15 23 42 / 73%), rgb(15 23 42 / 96%)),
    url(../../assets/footer/footer-3.png);
}

.bg-footer{
    background: #0f172a;
}

.btn-download-app {
  background-color:25d366;
}

.btn-go-green {
  background-image: linear-gradient( 45deg, #00e3b9, #00c749);
}

.text-dark {
  color: #333;
}

.text-light {
  color: #f8fafc;
}
.bg-conic-gradient {
    background-image: conic-gradient(from 
225deg,#ffc876,#79fff7,#9f53ff,#ff98e2,#ffc876) !important;
}

.carousel-container {
      width: 100%;
      position: relative;
    }

.carousel-track {
      display: flex;
      width: 500%;
      animation: slide 25s infinite;
    }

.carousel-slide {
      width: 20%;
    }

@keyframes slide {
      0%, 15% { transform: translateX(0); }
      20%, 35% { transform: translateX(-20%); }
      40%, 55% { transform: translateX(-40%); }
      60%, 75% { transform: translateX(-60%); }
      80%, 95% { transform: translateX(-80%); }
      100% { transform: translateX(0); }
}
.bg-conic-gradient-1 {
    background: linear-gradient(
216.53deg, rgb(77, 255, 136) 15.95%, rgb(61, 232, 202) 83.66%);
}

.text-conic-gradient-1 {
  background: linear-gradient(
    216.53deg, 
    rgb(77, 255, 136) 15.95%, 
    rgb(61, 232, 202) 83.66%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.btn-gradient-oner{
    background: linear-gradient(
90deg,#9064da 0,#2171e0 49.37%,#844eb4 101.93%)!important;
}
.bg-gradient-uni{
    background: linear-gradient(115deg, rgb(79, 207, 112), rgb(250, 214, 72), rgb(167, 103, 229), rgb(18, 188, 254), rgb(68, 206, 123)) 0% 0% / 50% 100%;
}
.success-gradient{
    height:100vh;
    background: linear-gradient(rgb(119, 198, 248) 0%, rgb(255, 255, 255) 50%);
}

.toxic-gradient{
    background: radial-gradient(at 19% 24%, rgb(239, 204, 255) 0px, transparent 50%), radial-gradient(at 80% -10%, rgb(179, 210, 255) 0px, transparent 50%) rgb(255, 255, 255);
}

.blur-toxic-gradient{
    background: linear-gradient(
43deg,rgb(42,212,255) 28%,rgb(44,134,230) 46%,rgb(247,104,255) 62%);
    filter: blur(100px);
}

.bg-h1 {
  background-image: url(../../assets/svg/bg-h1.svg);
  background-position: left center; 
  background-repeat: no-repeat;
  display: inline-block;
}

.bg-gold { background-image: linear-gradient( 
94deg, #dac98d -1.69%, #fff9db 14.77%, #decf99 42.85%);
} 