:root {
  --dark: #101d2c;
  --primary: #6d5d4b;
  --primary-dark: #574a3c;
  --primary-darker: #41382d;
  --secondary-light: #c69963;
  --secondary: #c69963;
  --secondary-dark: #b28a59;
  --secondary-darker: #9e7a4f;
  --light: #f9f7f6;
}


*,
:before,
:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}



body {
  color: #6d5d4b;
  font-family: 'Cairo', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  display: flex;
}

.container {
  grid-template-rows: 80vh min-content 40vw repeat(3, min-content);
  grid-template-columns: [sidebar-start] 8rem[sidebar-end full-start] minmax(6rem, 1fr)[center-start] repeat(8, [col-start] minmax(min-content, 14rem)[col-end])[center-end] minmax(6rem, 1fr)[full-end];
  display: grid;
}

.d-none {
  display: none;
}

.heading-4,
.heading-3,
.heading-2,
.heading-1 {
  font-family: 'Cairo', sans-serif;
  font-weight: 400;
}

.heading-1 {
  color: #f9f7f6;
  font-size: 4.5rem;
  line-height: 1.3;
}

.heading-2 {
  font-size: 4rem;
  font-style: italic;
  line-height: 1;
}

.heading-2--light {
  color: #f9f7f6;
}

.heading-2--dark {
  color: #54483a;
}

.heading-3 {
  color: #c69963;
  text-transform: uppercase;
  font-size: 1.6rem;
}

.heading-4 {
  font-size: 1.9rem;
}

.heading-4--light {
  color: #f9f7f6;
}

.heading-4--dark {
  color: #54483a;
}

.btn {
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  background-color: var(--secondary);
  border: none;
  border-radius: 0;
  padding: .8rem 1rem;
  font-family: Cairo, sans-serif;
  font-size: 1.6rem;
  transition: all .2s;
}

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

.mb-sm {
  margin-bottom: 2rem;
}

.mb-md {
  margin-bottom: 4rem;
}

.mb-lg {
  margin-bottom: 6rem;
}

.mb-xl {
  margin-bottom: 8rem;
}

.sidebar {
  z-index: 99;
  background-color: var(--secondary);
  max-width: 40%;
  height: 100%;
  margin: 0;
  padding: 1px;
  position: fixed;
  overflow: hidden;
}


.sidebar nav {
  min-width: 8rem;
}

.sidebar nav .nav-ul {
  transform-origin: 0 0;
  width: 3rem;
  padding-top: 3rem;
  list-style: none;
  transition: all .2s;
  transform: scale(0);
}

.sidebar nav .nav-link {
  color: #fff;
  margin-bottom: 2rem;
  padding: 0 2rem;
  font-size: 2.5rem;
  text-decoration: none;
  transition: all .2s ease-out;
  display: block;
}

.sidebar nav .active {
  width: auto !important;
  transform: scale(1);
}

.sidebar nav .nav-link:hover {
  color: #c69963;
  background-color: #fff;
}

.sidebar nav .nav-btn {
  color: #fff;
  padding: 0 2rem;
  font-size: 3.5rem;
  text-decoration: none;
}


.sidebar nav .nav-btn:hover {
  color: #f5f5f5;
}

.header {
  background-color: #54483a;
  background-image: linear-gradient(#101d2cba, #101d2cd4), url("img/hero.15be2ebf.jpg");
  background-position: center;
  background-size: cover;
  grid-column: full-start / 6 col-end;
  grid-template-rows: 1fr min-content minmax(6rem, min-content) 1fr;
  grid-template-columns: minmax(min-content, max-content);
  justify-content: center;
  row-gap: 1.5rem;
  min-height: 100vh;
  padding: 3rem 8rem 8rem;
  display: grid;
}

.header__logo {
  justify-self: center;
  height: 10rem;
}

.header__btn {
  place-self: start;
  font-size: 2.7rem;
  padding: .8rem 2rem;
  margin: 1rem 0;
}

.header__seen-text {
  color: #aaa;
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  column-gap: 1.5rem;
  font-size: 1.6rem;
  display: grid;
}

.header__seen-text:before,
.header__seen-text:after {
  content: "";
  background-color: currentColor;
  height: 1px;
  display: block;
}

.header__seen-logos {
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
  column-gap: 3rem;
  display: grid;
}

.header__seen-logos img {
  filter: brightness(70%);
  max-width: 100%;
  max-height: 2.5rem;
}

.realtors {
  background-color: #101d2c;
  grid-column: 7 col-start / full-end;
  place-content: center;
  justify-items: center;
  row-gap: 2rem;
  padding: 3rem;
  display: grid;
}



.realtors__list {
  grid-template-columns: min-content max-content;
  align-items: center;
  gap: 5vh 2rem;
  display: grid;
}

.realtors__img {
  border-radius: 50%;
  width: 8rem;
  display: block;
}


.realtors__sold {
  text-transform: uppercase;
  color: #f9f7f6;
  margin-top: -1px;
}

.realtors__sold a {
  color: #aaa;
  font-size: 1.3rem;
  text-decoration: none;
  transition: color .2s ease-in-out;
  display: block;
}

.realtors__sold a i {
  margin-left: .3rem;
}

.realtors__sold a:hover {
  color: #f9f7f6;
}

.features {
  grid-column: center-start / center-end;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  align-items: start;
  gap: 6rem;
  margin: 20rem 0 10rem 0;
  padding: 5rem 0;
  display: grid;
}

.feature {
  grid-template-columns: min-content 1fr;
  gap: 1.5rem 2.5rem;
  display: grid;
}

.feature h4 {
  color: var(--secondary-dark);
  font-size: 2.2rem;
}

.feature__icon {
  color: var(--secondary-dark);
  grid-row: 1 / span 2;
  font-size: 4rem;
  transform: translateY(-1rem);
}

.feature__text {
  font-size: 1.7rem;
}

.story__pictures {
  background-color: #c69963;
  background-image: linear-gradient(#c6996380, #c6996380), url("img/back.3e721026.jpg");
  background-size: cover;
  grid-column: full-start / 4 col-end;
  grid-template-rows: repeat(6, 1fr);
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  display: grid;
}

.story__img--1 {
  grid-area: 2 / 2 / 6 / 6;
  width: 100%;
  box-shadow: 0 2rem 5rem #0000001a;
}

.story__img--2 {
  z-index: 20;
  grid-area: 4 / 4 / 6 / 7;
  width: 115%;
  box-shadow: 0 2rem 5rem #0003;
}



.story__content {
  background-color: #f9f7f6;
  flex-direction: column;
  grid-column: 5 col-start / full-end;
  justify-content: center;
  align-items: flex-start;
  padding: 6rem 10rem 6rem 3rem;
  display: flex;
}

.story__text {
  margin-bottom: 4rem;
  padding-left: 2rem;
  font-size: 1.7rem;
}

#homes {
  margin: 5rem 0;
  grid-column: center-start / center-end;
}

#homes h2 {
  grid-column: 1 / -1;
  margin: 0 auto;
  flex-grow: 1;
  width: 100%;
  padding-bottom: 3rem;
  align-self: center;
  text-align: center;
}

#homes .all_properties {
  margin: 0 auto;
  margin-top: 2rem;
  width: 100%;
  flex-grow: 1;
  align-self: center;
  text-align: center;
}

#homes .all_properties button {
  width: 30rem;
  background-color: #101d2c;
}

.home {
  background-color: #f9f7f6;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 3rem;
  display: grid;
}


.home__img {
  z-index: 1;
  grid-area: 1 / 1 / 2 / -1;
  width: 100%;
}

.home__like {
  fill: #c69963;
  z-index: 2;
  grid-area: 1 / 2 / 2 / 3;
  justify-self: end;
  width: 2.5rem;
  height: 2.5rem;
  margin: 1rem;
}

.home__name {
  z-index: 3;
  text-align: center;
  color: #fff;
  background-color: #101d2c;
  grid-area: 1 / 1 / 2 / -1;
  place-self: end center;
  width: 80%;
  padding: 1.25rem;
  font-family: Cairo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  transform: translateY(50%);
}

.home__location,
.home__rooms {
  margin-top: .5rem;
}

.home__location,
.home__rooms,
.home__area,
.home__price {
  align-items: center;
  margin-left: .5rem;
  font-size: 1.8rem;
  display: flex;
}

.home__location i,
.home__rooms i,
.home__area i,
.home__price i {
  color: #c69963;
}

.home__location svg,
.home__rooms svg,
.home__area svg,
.home__price svg {
  fill: #c69963;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}

.home__btn {
  grid-column: 1 / -1;
}

.gallery {
  grid-gap: 1.5rem;
  background-color: #f9f7f6;
  grid-column: full-start / full-end;
  grid-template-rows: repeat(7, 5vw);
  grid-template-columns: repeat(8, 1fr);
  padding: 1.5rem;
  display: grid;
}


.gallery__item--1 {
  grid-area: 1 / 1 / span 2 / span 2;
}

.gallery__item--2 {
  grid-area: 1 / 3 / span 3 / span 3;
}

.gallery__item--3 {
  grid-area: 1 / 6 / span 2 / 7;
}

.gallery__item--4 {
  grid-area: 1 / 7 / span 2 / -1;
}

.gallery__item--5 {
  grid-area: 3 / 1 / span 3 / span 2;
}

.gallery__item--6 {
  grid-area: 4 / 3 / span 2 / span 2;
}

.gallery__item--7 {
  grid-area: 4 / 5 / 5 / 6;
}

.gallery__item--8 {
  grid-area: 3 / 6 / span 2 / span 2;
}

.gallery__item--9 {
  grid-area: 3 / 8 / span 3 / -1;
}

.gallery__item--10 {
  grid-area: 6 / 1 / span 2 / 2;
}

.gallery__item--11 {
  grid-area: 6 / 2 / span 2 / span 2;
}

.gallery__item--12 {
  grid-area: 6 / 4 / span 2 / 5;
}

.gallery__item--13 {
  grid-area: 5 / 5 / span 3 / span 3;
}

.gallery__item--14 {
  grid-area: 6 / 8 / span 2 / -1;
}

.gallery__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.footer {
  background-color: #101d2c;
  grid-column: full-start / full-end;
  padding: 4rem;
}



.footer__brand {
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  display: flex;
}

.footer__logo {
  width: 5rem;
}

.footer .heading-2 {
  color: #c69963;
  font-style: normal;
}

.footer .socials {
  border-bottom: 1px solid #6d5d4b;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding-bottom: 1rem;
  display: flex;
}


.footer .socials a:link,
.footer .socials a:visited {
  color: #f9f7f6;
  font-size: 1.7rem;
  text-decoration: none;
  transition: all .2s;
}

.footer .socials a i {
  padding-left: .5rem;
}

.footer .socials a:hover {
  color: #aaa;
}

.nav {
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  list-style: none;
  display: grid;
}

.nav-link:link,
.nav-link:visited {
  color: #f9f7f6;
  text-align: center;
  text-transform: uppercase;
  padding: .5rem 1rem;
  font-family: Cairo, sans-serif;
  font-size: 1.6rem;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.nav-link:hover,
.nav-link:active {
  background-color: #ffffff0d;
  transform: translateY(-3px);
}

.copyright {
  color: #f9f7f6;
  text-align: center;
  margin-top: 2rem;
  font-size: 1.7rem;
}

.copyright a {
  color: #f5f5f5;
  text-decoration: none;
}

.add {
  background-color: #101d2c;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  padding: 3rem 8rem 8rem;
  display: flex;
}

.add .head {
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding-bottom: 4rem;
  display: flex;
}

.add .head button {
  text-transform: capitalize;
  border-radius: 5px;
  padding: 1rem 2rem;
  font-size: 1.6rem;
}

.add form {
  flex-direction: column;
  gap: 1.5rem;
  max-width: 50rem;
  padding-top: 3rem;
  display: flex;
}

.form_error {
  color: red;
  font-size: 1.6rem;
  text-align: center;
}

.add form select,
.add form input,
.add form textarea {
  padding: .8rem .4rem;
  font-family: inherit;
  font-size: 1.6rem;
}

.add form label {
  color: #f9f7f6;
  font-size: 1.6rem;
}

.add form .form-group {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.add form .form-group label {
  width: 50%;
}

.add form .btn {
  margin-top: 2rem;
}

.view {
  background-color: #101d2c;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  margin: 0 auto;
  padding: 3rem 8rem 8rem;
  display: flex;
}

.view .head {
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding-bottom: 4rem;
  display: flex;
}

.view .head button {
  text-transform: capitalize;
  border-radius: 5px;
  padding: 1rem 2rem;
  font-size: 1.6rem;
}


.view_content {
  flex-direction: column;
  max-width: 92rem;
  display: flex;
}

.view_content .heading-2 {
  color: #f9f7f6;
  font-size: 3rem;
  font-style: normal;
  margin-bottom: 2rem;
}

.view_content .details {
  margin: 3rem auto;
  padding: 0 2rem;
}


.view_content .field {
  color: #f9f7f6;
  border-bottom: 1px dotted #aaa;
  justify-content: space-between;
  align-items: center;
  width: 40rem;
  margin-right: 1rem;
  padding-top: 1rem;
  font-size: 1.7rem;
  display: flex;
}



.view_content .desc {
  color: #f9f7f6;
  padding: 1rem;
  font-size: 1.7rem;
}

.view_content .images {
  width: 85%;
  margin: 0 auto;
}


.view_content .images img {
  object-fit: contain;
  width: 100%;
  padding: 1rem 0;
}

.view_content .contact {
  /* min-width: 50rem; */
  margin: 3rem auto;
  padding: 2rem 0;
}


.view_content .contact a {
  color: #f9f7f6;
  text-decoration: none;
  transition: color .2s;
}

.view_content .contact a:hover {
  color: #aaa;
}

.list {
  background-color: #101d2c;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  margin: 0 auto;
  padding: 3rem 5rem 5rem;
  display: flex;
}

.list .head {
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding-bottom: 4rem;
  display: flex;
}



.list .head button {
  text-transform: capitalize;
  border-radius: 5px;
  padding: 1rem 2rem;
  font-size: 1.6rem;
}



.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
}


.cards .card {
  background-color: #f9f7f6;
  display: flex;
  flex-direction: column;
  width: 30rem;
  height: 40rem;
  justify-content: space-between;
  gap: 0;
  border-radius: 3px;
  overflow: hidden;
  margin: 1rem;
}

.cards .card__img {
  z-index: 1;
  grid-area: 1 / 1 / 2 / -1;
  width: 100%;
  height: 60%;
  object-fit: cover;
}


.cards .card__name {
  z-index: 3;
  text-align: center;
  color: #fff;
  background-color: #101d2c;
  grid-area: 1 / 1 / 2 / -1;
  place-self: end center;
  width: 80%;
  padding: .8rem;
  font-family: Cairo, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 auto;
  margin-top: -10%;
  /* transform: translateY(50%); */
}

.cards .card__details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
}

.cards .card__location,
.cards .card__rooms,
.cards .card__area,
.cards .card__price {
  align-items: center;
  font-size: 1.6rem;
  display: flex;
  gap: 1rem;
}

.cards .card__location i,
.cards .card__rooms i,
.cards .card__area i,
.cards .card__price i {
  color: #c69963;
  font-size: 1.8rem;
}


.cards .card__btn {
  grid-column: 1 / -1;
}












/****** MEDIA QUERIES ********/
@media only screen and (width <=75em) {
  html {
    font-size: 57%;
  }
}


@media only screen and (width >=62.5em) {
  .realtors {
    min-height: 100vh;
  }
}

/* 1000 px */
@media only screen and (width <=62.5em) {
  .container {
    flex-direction: column;
    display: flex;
  }

  .header {
    min-height: calc(100vh - 165px);
  }

  .realtors__list {
    gap: 0 1rem;
    display: flex;
  }

  .features {
    padding: 9rem 9rem 0 0;
  }

  .story__img--2 {
    grid-row: 1 / -1;
    width: 100%;
  }

  .story__content {
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }

  #homes {
    margin: 7rem 0;
    padding-right: 10rem;
  }

  .home {
    row-gap: 2.5rem;
    width: 95%;
  }

  .gallery {
    padding-right: 10rem;
  }

  .footer {
    padding-right: 8rem;
  }
}

/* 50 em 800px */
@media only screen and (width <=50em) {
  .container {
    flex-direction: column;
    display: flex;
    overflow-x: hidden;
  }

  .sidebar nav {
    min-width: 6rem;
  }

  .header {
    min-height: calc(100vh - 160px);
  }

  .header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 10rem 4rem 4rem;
    display: flex;
  }

  .header h1 {
    padding-bottom: 2rem;
    padding-right: 3rem;
    font-size: 4rem;
  }

  .header__btn {
    place-self: center;
  }

  .header__seen-logos {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-right: 5rem;
    display: flex;
  }

  .realtors {
    flex-direction: column;
    grid-column: 1 / -1;
    justify-content: center;
    align-items: center;
    padding-right: 6rem;
    display: flex;
  }

  .realtors__img {
    width: 6rem;
  }

  .features {
    flex-direction: column;
    margin: 5rem 0;
    padding-top: 3rem;
    display: flex;
  }

  .feature {
    text-align: center;
    flex-direction: column;
    row-gap: .5rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
  }

  .story__pictures {
    flex-direction: column;
    grid-column: 1 / -1;
    padding-right: 6rem;
    display: flex;
  }

  .story__img--1 {
    grid-area: 1 / 1 / -1 / 4;
  }

  .story__content {
    grid-area: 5 / 1 / 6 / -1;
  }

  .story__text {
    padding-left: 0;
  }

  #homes {
    margin: 5rem 0;
  }

  .homes {
    flex-direction: column;
    align-items: end;
    padding-left: 2rem;
    display: flex;
  }

  .home {
    row-gap: 2.5rem;
    width: 95%;
  }

  .footer .socials {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer .socials a {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .view {
    padding: 3rem;
  }

  .list .head {
    flex-wrap: wrap;
    align-self: flex-start;
    padding: 1rem 0;
  }

  .list {
    padding: 3rem;
  }
}

@media only screen and (width <=38.75em) {
  .gallery {
    flex-direction: column;
    display: flex;
  }
}

/* 600 px MOBILE */
@media only screen and (width <=37.5em) {

  .sidebar {
    max-width: 60%;
  }

  .sidebar nav .nav-ul {
    width: 2rem;
  }

  .sidebar nav .nav-link {
    padding: 0 1.5rem;
  }

  .sidebar nav .nav-btn {
    padding: 0 1.5rem;
    font-size: 3rem;
  }

  .header {
    min-height: 100vh;
  }

  .realtors__list {
    flex-direction: column;
    row-gap: 1rem;
  }

  .realtors__img {
    width: 8rem;
  }

  .story__content {
    padding-right: 8rem;
  }

  #homes {
    margin: 3rem 0;
    padding-right: 7rem;
  }

  #homes .all_properties button {
    width: 25rem;
  }

  .gallery {
    padding-right: 8rem;
  }

  .heading-1 {
    font-size: 3rem;
  }

  .add {
    padding: 3rem;
    overflow-x: hidden;
  }

  .add .head {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .add form {
    width: 98%;
    max-width: 35rem;
  }

  .view .head button {
    margin-bottom: 1rem;
  }

  .view_content .details {
    padding: 0;
  }

  .view_content .field {
    width: 35rem;
  }

  .view_content .images {
    width: 95%;
  }

  .view_content .contact {
    min-width: 30rem;
  }

  .list .head button {
    padding: .5rem 2rem;
    margin-bottom: 1rem;
  }
}

@media only screen and (width <=25em) {
  .view_content .field {
    width: 95%;
  }
}

@media only screen and (width <=22.8em) {
  .cards .card {
    width: 25rem;
    height: 40rem;
  }

  .view_content .contact {
    min-width: 27rem;
  }
}

/* Filters Section Styles */
.filters-section {
  margin: 2rem 0;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.filters-title {
  color: var(--light);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 500;
}

.filters-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 18rem;
}

.filter-group label {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--light);
  margin-bottom: 0.5rem;
}

.filter-select {
  padding: 1rem;
  font-size: 1.4rem;
  border: 0.2rem solid var(--light);
  border-radius: 0.5rem;
  background-color: white;
  color: var(--primary);
  transition: all 0.3s ease;
  font-family: Cairo, sans-serif;
}

.filter-select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0.5rem rgba(198, 153, 99, 0.3);
}

.clear-btn {
  padding: 1rem 2rem;
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: Cairo, sans-serif;
  min-width: 15rem;
  height: fit-content;
}

.clear-btn:hover {
  background: var(--secondary-dark);
  transform: translateY(-0.2rem);
}

.clear-btn:active {
  transform: translateY(0);
}

/* No Results Message */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--light);
}

.no-results i {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.no-results h3 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.no-results p {
  font-size: 1.6rem;
  opacity: 0.7;
}

/* Mobile Responsive */
@media only screen and (max-width: 768px) {
  .filters-grid {
    flex-direction: column;
    gap: 1rem;
  }

  .filter-group {
    min-width: 100%;
  }

  .filters-section {
    padding: 1.5rem;
    margin: 1rem 0;
  }

  .filters-title {
    font-size: 1.8rem;
  }
}