:root {
  --h1-color: #641435;
  --black-text-color: #191919;
  --white-text-color: #fff;
  --hover-color: #818c7c;
  --body-font-family: 'Montserrat', sans-serif;
  --header-font-family: 'Cormorant Garamond', serif;
  --h1-font-weight: bold;
  --h2-font-weight: bold;
  --h1-font-size: 30px;
  --h2-font-size: 25px;
  --body-font-size: 16px;
  --button-font-size: 15px;
  --button-background-color: #641435;
  --button-text-style: uppercase;
  --bg-color: #dfedd9;
}

* {
  box-sizing: border-box;
}

.temp img {
  width:100%;
  margin: 0 auto;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  scroll-behavior: smooth;
}

body {
  background-color: white;  
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

body::-webkit-scrollbar {
  display: none;
}

html {
  background-color: var(--bg-color );
}

.topbar {
  position: relative;
  width: 100%;
  max-width: 1440px;
}

.navbar {
  padding: 30px 0 0 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: left;
  box-sizing: border-box;
  background-color: transparent;
  justify-content: left;
  align-items:center;
  z-index: 2000;
  margin-left: 5%;
}

.logo img {
  height: 110px; 
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  padding: 0 0 20px 0;
  margin-right: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  padding-top: 20px;
  gap: 70px;
  margin: 0 auto;
  margin: 30px 0 0 120px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--h1-color);
  font-weight: var(--h2-font-weight);
  font-size: 16px;
  font-family: var(--header-font-family);
  text-transform: var(--button-text-style);
}

.nav-links a:hover, 
.secondary-nav-links a:hover,
.buttons a:hover,
.social-text a:hover,
.footer-right a:hover {
  color: var(--hover-color);
}

.secondary-nav-links {
  position: absolute;
  justify-content: flex-start;
  top: 20px;
  right: 0;
  z-index: 2001;
  margin-right: 100px;
}

.secondary-nav-links ul {
  display: flex;
  gap: 50px;
  list-style: none;
  border:0.1px #000;
}

.secondary-nav-links a {
  text-decoration: none;
  color: var(--h1-color);
  font-family: var(--header-font-family);
  font-weight: var(--h2-font-weight);
  font-size: 13px;
  text-transform: var(--button-text-style);
}

.nav-links li {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: none;
  width: 160px;
  padding:0;
  text-align: center;
  z-index: 2000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 10px;
  color: var(--black-text-color);
  text-decoration: none;
  font-family: var(--body-font-family);
  font-size: 12px;
  border-bottom: .1px solid #000;
  font-weight: lighter;
}

.logo img:hover,
.logo-footer img:hover {
    filter: brightness(1.5);
    transform: translateY(-5px);
}

/*----------------------------------------- throughout -----------------------------------------*/

#container-about,
#container-sterling,
#container-wooden,
#container-home {
  max-width: 1500px;
  background-color: #fff;
  padding: 0 40px 40px 40px;
  margin: 0 auto;
}

h1 {
  text-align: center;      
  font-family: var(--header-font-family);
  color: var(--h1-color);
  font-size: var(--h1-font-size);
  padding-bottom: 40px;
}

h2 {
  font-family: var(--header-font-family);
  color: var(--h1-color);
  font-size: var(--h2-font-size);
  font-weight:normal;
  text-align: center;
  margin: 30px auto;
  max-width: 70%;
  padding: 40px 0 20px 0;
}

h3 {
  text-align: center;      
  font-family: var(--body-font-family);
  color: var(--black-text-color);
  font-size: 18px;
  padding-bottom: 30px;
}

p {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  color: var(--black-text-color);
}

/*----------------------------------------- hero graphics & hero video -----------------------------------------*/

.hero,
.hero2 {
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto;
    position: relative;
    width: 100%;    
    max-width: 1500px;
    z-index: 1;
    pointer-events: none;
 }

 .hero img {
  margin-top: -160px;
  width: 100%;
 }

 .hero2 img {
  margin-top: -80px;
  width: 100%;
 }

.hero-container {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.hero-video {
  width: 1400px;
  height: 700px;
  overflow: hidden;
  border-radius: 8px;
  /*clip-path: url(#wave-clip);*/
  margin-top: -200px;
  margin-left: -45px;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center 15%;
}

.wooden-description {
  width: 65%;
  margin: 0 auto;
  padding: 0 20px 0 40px;
}

.wooden-description p {
  font-size: var(--body-font-size);
   font-family: var(--body-font-family);
}

/*----------------------------------------- carousel intro -----------------------------------------*/

.carousel-wrapper,
.carousel-wrapper-reverse {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
}

.carousel-wrapper {
justify-content: right;
}

.carousel-wrapper-reverse {
  justify-content: left;
}

.carousel-viewport {
  overflow:hidden;
  width: 420px;
}

.carousel-track {
  display: flex;
  gap: 0;
  transition: transform 0.4s ease;
  height: 100%;
}

.carousel-track img {
  height: 500px;
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
}

/* Arrows */
.carousel-btn {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #232323;
}

.carousel-btn:hover {
  color: var(--hover-color);
}

.carousel-btn.prev {
  margin-right: 10px;
}

.carousel-btn.next {
  margin-left: 10px;
}


/*----------------------------------------- dif. types wooden jewelry -----------------------------------------*/

.wooden-type,
.wooden-type-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  column-gap: 0px;
}

.wooden-image img,
.wooden-image-reverse img {
  width: 100%;
  max-width: 420px;
  height: auto;
}

.wooden-image {
  grid-column: 1;
  justify-self: end;
}

.wooden-text,
.wooden-text-reverse {
  grid-column: 2;
  width: 79%;
}

.wooden-text {
  padding-left: 40px;
}

.wooden-text-reverse {
  padding-right: 40px;
  text-align: right;
  justify-self: right;
}

.wooden-text-reverse,
 .wooden-text-reverse {
  grid-column: 1;
}

.wooden-image-reverse {
  grid-column: 2;
  justify-self: start;
}

/*----------------------------------------- pbs video section -----------------------------------------*/

.process-wooden-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
  padding: 20px 0 40px 0;
  gap: 20px;
  max-width: 1200px;
}

.process-wooden-image {
  max-width: 550px;
  margin: 0 auto;
  flex: 1;
  display:flex;
  justify-content: flex-end;
}

.process-wooden-image img {
  width:100%;
  height: auto;
  border-radius: 8px;
}

.process-wooden-text {
  max-width: 500px;
  margin: 0;
  flex: 1;
  justify-content: flex-start;
  padding-right: 40px;
}

.process-wooden-text p {
  font-size: var(--body-font-size);
  font-family: var(--body-font-family);
}


/*----------------------------------------- pbs video section -----------------------------------------*/

.video-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.video-text p {
  width: 70%;
  font-size: var(--h2-font-size);
  font-family: var(--header-font-family);
  color: var(--h1-color);
  display:flex;
  margin:0 auto;
  text-align: center;
  padding-bottom: 20px;
}

.video-wrapper {
  width: 70%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/*----------------------------------------- footer -----------------------------------------*/

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: top;
  text-align: center;
  padding-bottom: 30px;
}

.footer-middle,
.footer-right,
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-end;
  z-index: 2;
  margin: 0 auto;
}

.footer-middle {
  margin-bottom: -10px;
}

.footer-middle p,
.footer-right p {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  color: var(--black-text-color);
}

.logo-footer {
  display: flex;
  align-items: center;
  width: 100%;
}

.logo-footer img {
  width: 180px;
  height:auto;
  transition: transform 0.3s ease;
} 

.hero3 {
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto;
    position: relative;
    width: 100%;    
    max-width: 1500px;
    z-index: 1;
    pointer-events: none;
 }

  .hero3 img {
  margin-top: -40px;
  margin-bottom: -140px;
  width: 100%;
 }

.social {
  display: flex;
  flex-direction: row;
}

.social img {
  width: 40px;
  margin: 0 8px;
  padding-top: 10px;
}

.social-text, 
.social-icons {
  display: flex;
  flex-direction: column;
}

.social-text p {
  margin: 0;
  padding: 20px 0 0 10px;
}

.social-text a {
  text-decoration: none;
}

.footer-right a {
  text-decoration: none;
  color: var(--black-text-color);
}

.hamburger {
  display: none;
}

#hamburger-btn {
  display: none;
}

/* --- desktop --- */
.desktop-nav { display: block; }
.mobile-nav, #hamburger-btn { display: none; }


/* ======================================== responsive and mobile ======================================== */

/* ========================================
   RESPONSIVE MEDIA QUERIES
======================================== */

/* Remove video curve below 1500px and align with h1 */
@media (max-width: 1500px) {
  
  .hero-video {
    width: 50%;
    height: 600px;
    /*clip-path: none;*/
    overflow: hidden;
    border-radius: 8px 8px 0 0;
     margin-top: -200px;
  margin-left: -45px;
  }
  
  .hero-container {
    margin-top: 20px;
  }
  
  video {
    object-position: center;
  }
}

/* Tighten nav spacing to prevent overlap with hero */
@media (max-width: 1420px) {
  .nav-links {
    gap: 50px;
    margin-left: 80px;
  }
}

@media (max-width: 1300px) {
  .nav-links {
    gap: 35px;
    margin-left: 60px;
  }
}

@media (max-width: 1200px) {
  .nav-links {
    gap: 25px;
    margin-left: 40px;
  }

  .carousel-viewport {
  overflow:hidden;
  width: 400px;
}

.wooden-text ,
.wooden-text-reverse {
  width: 90%;
}

}

/* =======================================Show hamburger menu at 1025px */
@media (max-width: 1025px) {
  /* Hide desktop nav, show hamburger */
  
 
      .hero-container {
    max-width: none; /* Remove max-width constraint */
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: center;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
  }
  
  .hero-video {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 600px;
    overflow: hidden;
    margin-top: -300px;
    margin-left: 0;
    border-radius: 0;
  }
  
  video {
    object-position: center;
    width: 100%;
    height: 100%;
  }
  
  .wooden-description {
    width: 90%;
    max-width: 1200px;
    padding: 40px 20px 0 20px;
    margin: 0 auto;
  }

  .desktop-nav {
    display: none !important;
  }
  
   .navbar {
    padding-top: 75px;
    margin: 0;
    position: relative;
    z-index: 3000;
  }

    .logo {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
  }

  .hero {
    position: relative;
    margin-top: 0;
  }

  .hero img {
    margin-top:0;
    display:block;
  }

  #hamburger-btn {
    margin-top: 0;
    padding-top: 0;
    position: absolute;
    top: 120px;
    right: 50px;
    z-index: 4000;
  }

  #hamburger-btn,
#hamburger-btn .hamburger {
  display: block;
}
  
  .hamburger {
    display: block;
    cursor: pointer;
    background: #fff;
    border-radius: 8px;
    border: 0;
    padding: 10px 5px 5px 15px;
    z-index: 4000;
    position: relative;
    margin: 20px 20px 0 0;
  }
  
  .hamburger-box {
    width: 50px;
    height: 50px;
    display: inline-block;
    position: relative;
  }
  
  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: var(--h1-color);
    border-radius: 4px;
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
  }
  
  .hamburger-inner::before,
  .hamburger-inner::after {
    content: "";
    display: block;
  }
  
  .hamburger-inner::before {
    top: -10px;
  }
  
  .hamburger-inner::after {
    bottom: -10px;
  }
  
  .hamburger.is-active .hamburger-inner {
    transform: rotate(45deg);
  }
  
  .hamburger.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
  }
  
  .hamburger.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
  }
  
  /* Mobile navigation */
  .mobile-nav {
    position: fixed;
    margin-top: 0;
    right: -100%;
    width: 300px;
    height: 57vh;
    border-radius: 8px;
    transition: right 0.3s ease;
    z-index: 3000;
    overflow-y: auto;
    display: block;
  }
  
  .mobile-nav.show {
    right: 0;
  }
  
  .mobile-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
  }
  
  .mobile-links > li {
    border-bottom: 1px solid #eee;
    display: block;
    background: white;
  }
  
  .mobile-links > li a,
  .mobile-links > li button {
    display: block;
    padding: 15px 20px;
    color: var(--h1-color);
    text-decoration: none;
    font-family: var(--header-font-family);
    font-weight: var(--h2-font-weight);
    font-size: 14px;
    text-transform: uppercase;
  }
  
  .mobile-dropdown-toggle {
    width: 100%;
    padding: 15px 20px;
    background: none;
    border: none;
    text-align: left;
    color: var(--h1-color);
    font-family: var(--body-font-family);
    font-weight: var(--h2-font-weight);
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .toggle-symbol {
    font-size: 20px;
    font-weight: normal;
  }
  
  .mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f7fdf7;
    display: block;
  }
  
  .mobile-submenu.show {
    max-height: 500px;
  }
  
  .mobile-submenu li {
    display: block;
  }
  
  .mobile-submenu a {
    padding: 12px 20px 12px 40px;
    font-size: 13px;
    display: block;
    font-family: var(--body-font-family);
    font-weight: lighter;
  }
  
    .mobile-submenu li a {
    font-family: var(--body-font-family);
    font-weight:inherit;
  }

  /* Secondary nav hide */
  .secondary-nav-links {
    display: none;
  }
  
  /* Navigation adjustments */
  .navbar {
    margin: 0 auto;
    z-index: 2;
  }
  
  .logo img {
    width: 40%;
    height: auto;
    margin: 0 auto;
  }
  /* Hero adjustments */
  .hero img {
    margin-top: -100px;
  }
  
  .hero2 img {
    margin-top: -60px;
  }
  
  .hero3 img {
    margin-top: -20px;
    margin-bottom: -115px;
  }
  
  footer {
    padding:0;
  }
  
  /* Wooden types sections - stack layout */
  .wooden-type,
  .wooden-type-reverse {
    display: flex;
    flex-direction: column;
    width: 90%;
    gap: 30px;
  }
  
  .wooden-image,
  .wooden-image-reverse {
    width: 100%;
    order: 1;
  }
  
  .wooden-text,
  .wooden-text-reverse {
    width: 100%;
    padding: 0 20px;
    text-align: left;
    order: 2;
  }
  
  /* Carousel show one image at a time */
  .carousel-viewport {
    width: 400px;
  }
  
  .carousel-track img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
  }
  
  /* Carousel adjustments */
  .carousel-wrapper,
  .carousel-wrapper-reverse {
    justify-content: center;
    max-width: 100%;
  }
  
  .wooden-text ,
.wooden-text-reverse,
.process-wooden-text {
  width: 75%;
}

  /* Process section */
  .process-wooden-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 20px 20px 40px 20px;
  }
  
  .process-wooden-image {
    max-width: 100%;
  }
  
  .process-wooden-image {
    justify-content: center;
  }
  
  /* Video section */
  .video-wrapper {
    width: 85%;
  }
  
  .video-text p {
    width: 85%;
  }


}

/* ================================Mobile landscape and smaller tablets (768px) */
@media (max-width: 768px) {
  
  .mobile-top-block {
    display: block;
    width: 100vw;
    height: 90px;
    background-color: #f5faf4;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    z-index: 5;
  }

  .topbar {
    max-width: none;
    position: relative;
    z-index: 3000; /* ADD THIS - keeps topbar and logo on top */
  }

  .navbar {
    padding: 20px 0 0 0;
    margin-left: 20px;
    position: relative;
    z-index: 3000;
  }

  .logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
  }

  .logo img {
    height: 120px;
    width: auto;
    padding: 0 0 10px 0;
  }

   #hamburger-btn {
    margin-top: 0;
    position: absolute;
    top: -70px;
    right: 50px;
    z-index: 4000;
  }

  .hamburger {
    background: transparent;
  }

  .hero {
    position: relative;
    margin-top: -31px;
    z-index: 10; /* LOWER z-index so logo appears above */
  }

  .hero img {
    margin-top: 10px;
    display: block;
    position: relative;
    z-index: 10; /* REMOVE the 2000, use 10 instead */
  }

  .hero-container {
    max-width: none; 
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: center;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    z-index: 1; /* ADD THIS */
  }
  
  .hero-video {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 700px;
    overflow: hidden;
    margin-top: -250px; /* Adjust this value */
    margin-left: 0;
    border-radius: 0;
    position: relative;
    z-index: 1; /* ADD THIS */
  }

  /* Typography */
  h1 {
    font-size: 32px;
    padding-bottom: 30px;
  }
  
  h2 {
    font-size: 24px;
    max-width: 85%;
    padding: 30px 0 15px 0;
  }
  
  h3 {
    font-size: 16px;
    padding-bottom: 20px;
  }
  
  p {
    font-size: 15px;
  }
  
  /* Container padding */
  #container-about,
  #container-otherwork,
  #container-wooden,
  #container-home {
    padding: 0 20px 30px 20px;
  }
  
  .wooden-description {
    width: 95%;
    padding: 30px 10px 0 10px;
  }
  
  /* Carousel - ensure one image shows at a time */
  .carousel-viewport {
    width: 60%;
  }
  
  .carousel-track img {
    width: 100%;
    height: auto;
    max-height: 350px;
  }
  
  .carousel-btn {
    font-size: 24px;
  }
  
  /* Wooden types - text below carousel */
  .wooden-type,
  .wooden-type-reverse {
    display: flex;
    flex-direction: column;
    width: 95%;
    gap: 25px;
  }
  
  .wooden-image,
  .wooden-image-reverse {
    width: 100%;
    order: 1;
  }
  
  .wooden-text,
  .wooden-text-reverse {
    width: 100%;
    padding: 0 20px;
    text-align: left;
    order: 2;
  }
  
  /* Video section */
  .video-wrapper {
    width: 95%;
  }
  
  .video-text p {
    width: 95%;
    font-size: 22px;
  }
  
  /* Footer */
  footer {
    flex-direction: column;
    gap: 30px;
    padding-bottom: 20px;
  }
  
  .logo-footer img {
    width: 150px;
    margin-top: -40px;
  }
}

/* ==========================================Small mobile (700px) */
@media (max-width: 700px) {
  
.hero-video {
  height:700px;
}
  .logo img {
    height: 100px;
    width: auto;
    padding: 0 0 10px 0;
  }
  
  .navbar {
    margin-left: 15px;
  }
  
  #hamburger-btn {
    margin-right: 20px;
  }
  
  /* Typography */
  h1 {
    font-size: 26px;
    padding-bottom: 20px;
  }
  
  h2 {
    font-size: 20px;
    max-width: 95%;
  }
  
  p {
    font-size: 14px;
  }
  
  .navbar {
    padding: 20px 0 0 0;
    margin-left: 20px;
  }

  .hero {
    position: relative;
    margin-top: -30px;
  }

  .hero img {
    display:block;
  }

  .hero img {
    margin-top:0;
  }
  
  .hero2 img {
    margin-top: -60px;
    margin-bottom: -50px;
  }
   
  
  /* Containers */
  #container-about,
  #container-otherwork,
  #container-wooden,
  #container-home {
    padding: 0 15px 20px 15px;
  }
  
  /* Carousel - one image at a time on mobile */
  .carousel-viewport {
    width: 70%;
  }
  
  .carousel-track img {
    width: 100%;
    height: auto;
    max-height: 340px;
  }
  
  .carousel-btn {
    font-size: 20px;
    padding: 5px;
  }
  
  .carousel-btn.prev {
    margin-right: 5px;
  }
  
  .carousel-btn.next {
    margin-left: 5px;
  }
  
  /* Wooden types - maintain text below */
  .wooden-type,
  .wooden-type-reverse {
    width: 100%;
    gap: 20px;
  }
  
  .wooden-text,
  .wooden-text-reverse {
    padding: 0 15px;
  }
  
  /* Process section */
  .process-wooden-wrapper {
    padding: 15px 10px 30px 10px;
  }
  
  .process-wooden-text {
    width: 85%;
    padding: 0;
  }

  /* Video */
  .video-text p {
    font-size: 18px;
  }
  
  /* Footer */
  .logo-footer img {
    width: 120px;
    background-color: var(--bg-color);
  }
  
  .social img {
    width: 35px;
  }
  
  footer {
    background-color: var(--bg-color);
    padding-top: 40px;
    gap: 5px;
  }
  
  .hero3 img {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .footer-left,
  .footer-middle,
  .footer-right {
    font-size: 12px;
    padding-bottom: 0;
  }
}

/* ==========================================Small mobile (620px) */
@media (max-width: 620px) {

  .hero {
    margin-top: -50px;
    width: 100%
  }

  .logo img{
    width: 70%;
    height: auto;
    padding-right: 10px;
    margin-top: -60px;
  }

  .mobile-top-block {
    background-color: #f5faf4;
    height: 100px;
    width: 100%;
  }


  #hamburger-btn {
    margin-top: -35px;
    margin-right: -10px;
  }

}