/* =========== */
/* Details CSS */
/* =========== */
._details {
  padding-top: 2em;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto auto;
  grid-template-areas: "img" "informations" "gallery";
}
@media only screen and (min-width: 1024px) {
  ._details {
    padding: 5em 0 7em 0;
    grid-template-columns: 40% 56%;
    gap: 4%;
    grid-template-rows: 1fr 44px;
    grid-template-areas: "informations img" "gallery img";
    border-bottom: 1px solid #C5C6C6;
  }
}
@media only screen and (min-width: 1920px) {
  ._details {
    padding: 5em 0 5em 0;
    grid-template-columns: 27% 71%;
    column-gap: 2%;
    row-gap: 33px;
    grid-template-areas: "informations img" "gallery img";
    border-bottom: 1px solid #c5c6c6;
    margin: 0 16em;
  }
}
.details__img {
  grid-area: img;
  width: 100%;
  height: 100%;
}
.details__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.details__informations {
  grid-area: informations;
  padding: 2em;
  background: #f0f5f5;
  border-bottom: 1px solid #C5C6C6;
}
@media only screen and (min-width: 1024px) {
  .details__informations {
    border: 1px solid #c5c6c6;
  }
}
.details__informations__company {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-template-rows: 100%;
  grid-template-areas: "img name";
  gap: 2em;
}
@media only screen and (min-width: 1024px) {
  .details__informations__company {
    grid-template-columns: 107px 1fr;
  }
}
.details__informations__company__imgbg {
  grid-area: img;
  width: 70px;
  height: 70px;
  background: #FFFFFF;
}
@media only screen and (min-width: 1024px) {
  .details__informations__company__imgbg {
    width: 107px;
    height: 107px;
  }
}
.details__informations__company__img {
  grid-area: img;
  width: 60px;
  place-self: center;
}
@media only screen and (min-width: 1024px) {
  .details__informations__company__img {
    width: 93px;
  }
}
.details__informations__company__name {
  grid-area: name;
  align-self: center;
}
.details__informations__company__name p {
  font-size: 2rem;
  color: #717171;
}
.details__informations__company__name a {
  font-size: 2rem;
  text-decoration: underline;
  color: #1F1F1F;
  font-weight: 500;
}
@media only screen and (min-width: 1024px) {
  .details__informations__company__name {
    align-self: end;
  }
  .details__informations__company__name p,
.details__informations__company__name a {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1920px) {
  .details__informations__company__name p,
.details__informations__company__name a {
    font-size: 2rem;
  }
}
.details__informations__location {
  color: #008F70;
  position: relative;
  padding: 2em 0 2em 2em;
}
.details__informations__location::before {
  content: "";
  background-image: url("../icons/location-green.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 8px;
  width: 18px;
  height: 26px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.details__informations__title {
  color: #2D776E;
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 1em;
}
@media only screen and (max-width: 360px) {
  .details__informations__title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .details__informations__title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1920px) {
  .details__informations__title {
    font-size: 2.5rem;
  }
}
.details__informations__type {
  font-size: 1.9rem;
  padding-bottom: 1em;
}
@media only screen and (max-width: 360px) {
  .details__informations__type {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1920px) {
  .details__informations__type {
    font-size: 2rem;
  }
}
.details__informations__price {
  color: #008F70;
  font-size: 3.5rem;
  font-weight: 700;
  padding-bottom: 0.5em;
}
@media only screen and (max-width: 360px) {
  .details__informations__price {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1920px) {
  .details__informations__price {
    padding: 0.5em 0 1em 0;
  }
}
.details__informations__delivered, .details__informations__units, .details__informations__floors {
  position: relative;
  padding: 0.5em 0 0.5em 2em;
}
@media only screen and (min-width: 1024px) {
  .details__informations__delivered, .details__informations__units, .details__informations__floors {
    padding: 0.5em 0 0.5em 2.5em;
  }
}
@media only screen and (min-width: 1920px) {
  .details__informations__delivered, .details__informations__units, .details__informations__floors {
    padding: 1em 0 1em 2.5em;
  }
}
.details__informations__delivered::before, .details__informations__units::before, .details__informations__floors::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 10px;
  width: 25px;
  height: 25px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.details__informations__delivered::before {
  background-image: url("../icons/delivered.svg");
}
.details__informations__units::before {
  background-image: url("../icons/units.svg");
}
.details__informations__floors::before {
  background-image: url("../icons/floors.svg");
}
.details__gallery {
  grid-area: gallery;
  display: grid;
  grid-template-columns: 48% 48%;
  gap: 4%;
  padding: 2em 2em 4em 2em;
}
@media only screen and (min-width: 1024px) {
  .details__gallery {
    padding: 0;
  }
}
.details__gallery__pictures, .details__gallery__videos {
  background: #008F70;
  font-size: 1.6rem;
  color: #FFFFFF;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media only screen and (min-width: 1280px) {
  .details__gallery__pictures, .details__gallery__videos {
    transition: 0.2s linear;
  }
  .details__gallery__pictures:hover, .details__gallery__videos:hover {
    background: #1F1F1F;
  }
}
.details__gallery__pictures span, .details__gallery__videos span {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px 20px;
  width: 25px;
  height: 20px;
  margin-right: 10px;
}
.details__gallery__pictures span {
  background-image: url("../icons/pictures.svg");
}
.details__gallery__videos span {
  background-image: url("../icons/videos.svg");
}

.description {
  border-bottom: 1px solid #C5C6C6;
}
.description__title {
  color: #008F70;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 360px) {
  .description__title {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1024px) {
  .description__title {
    padding-top: 2em;
    padding-bottom: 1em;
  }
}
.description__text {
  line-height: 1.5;
  padding-bottom: 60px;
  overflow: hidden;
}
.description__text p {
  padding-top: 1em;
}
.description__text.expanded {
  height: auto;
}
.description__more {
  padding: 2em 0;
  color: #008F70;
  font-size: 1.6rem;
  font-weight: 600; 
  margin: 0 auto;
  display: block; 
  cursor: pointer;
}
.description__more__arrow.rotated {
  transform: rotate(180deg);
}

.brochure {
  border-bottom: 1px solid #C5C6C6;
  padding-top: 3em;
  padding-bottom: 3em;
  display: grid;
  place-content: center;
}
.brochure__demand {
  border: 2px solid #2D776E;
  font-size: 1.6rem;
  color: #1F1F1F;
  height: 62px;
  width: 246px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brochure__demand span {
  background-image: url("../icons/brochure.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px 32px;
  width: 25px;
  height: 32px;
  margin-right: 10px;
}

.specs {
  border-bottom: 1px solid #C5C6C6;
  padding-top: 3em;
}
.specs__title {
  color: #008F70;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 360px) {
  .specs__title {
    font-size: 1.8rem;
  }
}
.specs__elements {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 2em 0;
}
@media only screen and (min-width: 768px) {
  .specs__elements {
    justify-content: unset;
  }
}
@media only screen and (min-width: 1024px) {
  .specs__elements {
    flex-wrap: unset;
  }
}
@media only screen and (min-width: 1920px) {
  .specs__elements {
    justify-content: flex-start;
  }
}
.specs__elements__concierge, .specs__elements__security, .specs__elements__lift, .specs__elements__ac, .specs__elements__park {
  position: relative;
  padding: 1em 0 1em 2.5em;
  width: 50%;
}
@media only screen and (min-width: 768px) {
  .specs__elements__concierge, .specs__elements__security, .specs__elements__lift, .specs__elements__ac, .specs__elements__park {
    width: 33.33%;
  }
}
@media only screen and (min-width: 1024px) {
  .specs__elements__concierge, .specs__elements__security, .specs__elements__lift, .specs__elements__ac, .specs__elements__park {
    width: 100%;
  }
}
@media only screen and (min-width: 1920px) {
  .specs__elements__concierge, .specs__elements__security, .specs__elements__lift, .specs__elements__ac, .specs__elements__park {
    width: unset;
    padding: 1em 4em 1em 2.5em;
  }
}
.specs__elements__concierge::before, .specs__elements__security::before, .specs__elements__lift::before, .specs__elements__ac::before, .specs__elements__park::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 10px;
  width: 25px;
  height: 25px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.specs__elements__concierge::before {
  background-image: url("../icons/concierge.svg");
}
.specs__elements__security::before {
  background-image: url("../icons/security.svg");
}
.specs__elements__lift::before {
  background-image: url("../icons/lift.svg");
}
.specs__elements__ac::before {
  background-image: url("../icons/ac.svg");
}
.specs__elements__park::before {
  background-image: url("../icons/park.svg");
}

.units {
  border-bottom: 1px solid #C5C6C6;
  padding-top: 3em;
  padding-bottom: 3em;
  display: grid;
  gap: 2em;
}
.units__title {
  color: #008F70;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 360px) {
  .units__title {
    font-size: 1.8rem;
  }
}
.units__container {
  background: #f0f5f5;
  padding: 1em 1em 2em 1em;
}
@media only screen and (min-width: 1024px) {
  .units__container {
    padding: 1em 2em 2em 2em;
  }
}
.units__container__header {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 50% 50%;
  grid-template-areas: "bedrooms bedrooms" "price number";
  padding: 1em 0 3em 0;
  row-gap: 1em;
}
.units__container__header__bedrooms {
  grid-area: bedrooms;
  font-size: 1.4rem;
  font-weight: 700;
}
@media only screen and (min-width: 1024px) {
  .units__container__header__bedrooms {
    font-size: 1.8rem;
  }
}
.units__container__header__price {
  grid-area: price;
  font-size: 1.4rem;
}
@media only screen and (min-width: 1024px) {
  .units__container__header__price {
    font-size: 1.8rem;
  }
}
.units__container__header__number {
  grid-area: number;
  font-size: 1.4rem;
  place-self: end;
  display: flex;
  align-items: center;
  font-weight: 600;
  height: 20px;
}
@media only screen and (min-width: 1024px) {
  .units__container__header__number {
    font-size: 1.8rem;
  }
}
.units__container__header__number span {
  margin-left: 1em;
  cursor: pointer;
  transform: rotate(180deg);
}
.units__container__header__number span.rotated {
  transform: rotate(0deg);
}
.units__container__content {
  display: grid;
  gap: 2em;
}
@media only screen and (min-width: 1024px) {
  .units__container__content {
    gap: 1em;
  }
}
.units__container__content__element {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto auto;
  grid-template-areas: "type meter sdb" "price size bathroom" "button button button";
  background: #FFFFFF;
  padding: 2em 1em;
  gap: 2em;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 1024px) {
  .units__container__content__element {
    grid-template-columns: auto auto auto 18%;
    grid-template-rows: auto auto;
    grid-template-areas: "type meter sdb button" "price size bathroom button";
  }
}
@media only screen and (min-width: 1920px) {
  .units__container__content__element {
    grid-template-columns: auto auto auto 10%;
  }
}
.units__container__content__element__type {
  grid-area: type;
  font-size: 1.4rem;
}
@media only screen and (min-width: 1024px) {
  .units__container__content__element__type {
    font-size: 1.8rem;
  }
}
.units__container__content__element__meter {
  grid-area: meter;
  font-size: 1.4rem;
}
@media only screen and (min-width: 1024px) {
  .units__container__content__element__meter {
    font-size: 1.8rem;
  }
}
.units__container__content__element__sdb {
  grid-area: sdb;
  font-size: 1.4rem;
  place-self: end;
}
@media only screen and (min-width: 1024px) {
  .units__container__content__element__sdb {
    place-self: unset;
    font-size: 1.8rem;
  }
}
.units__container__content__element__price {
  grid-area: price;
  font-size: 1.4rem;
  font-weight: 700;
}
@media only screen and (min-width: 1024px) {
  .units__container__content__element__price {
    font-size: 1.8rem;
  }
}
.units__container__content__element__size {
  grid-area: size;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  padding-left: 1em;
}
.units__container__content__element__size::before {
  content: "";
  background-image: url("../icons/size.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
  width: 12px;
  height: 12px;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1024px) {
  .units__container__content__element__size {
    font-size: 1.8rem;
    padding-left: 1.5em;
  }
  .units__container__content__element__size::before {
    left: 10px;
    width: 17px;
    height: 17px;
  }
}
.units__container__content__element__bathroom {
  grid-area: bathroom;
  font-size: 1.4rem;
  font-weight: 700;
  place-self: end;
  position: relative;
  padding-left: 1em;
}
.units__container__content__element__bathroom::before {
  content: "";
  background-image: url("../icons/bathroom.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
  width: 12px;
  height: 12px;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1024px) {
  .units__container__content__element__bathroom {
    place-self: unset;
    font-size: 1.8rem;
    padding-left: 1.5em;
  }
  .units__container__content__element__bathroom::before {
    left: 10px;
    width: 17px;
    width: 17px;
    height: 17px;
  }
}
.units__container__content__element__button {
  grid-area: button;
  font-size: 1.3rem;
  height: 44px;
  background: #008F70;
  color: #FFFFFF;
  display: grid;
  place-content: center;
  cursor: pointer;
}
@media only screen and (min-width: 1024px) {
  .units__container__content__element__button {
    font-size: 1.6rem;
    align-self: center;
  }
}
@media only screen and (min-width: 1280px) {
  .units__container__content__element__button {
    transition: 0.2s linear;
  }
  .units__container__content__element__button:hover {
    background: #1F1F1F;
  }
}
.units__container__content.collapsed {
  display: none;
}

.address {
  padding-top: 3em;
  padding-bottom: 6em;
  display: grid;
  gap: 2em;
}
@media only screen and (min-width: 1920px) {
  .address {
    padding-bottom: 14em;
  }
}
.address__title {
  color: #008F70;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 360px) {
  .address__title {
    font-size: 1.8rem;
  }
}
.address__text {
  font-size: 1.8rem;
  position: relative;
  padding-left: 2em;
}
.address__text::before {
  content: "";
  background-image: url("../icons/pin.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 10px;
  width: 18px;
  height: 26px;
  top: 25%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1024px) {
  .address__text::before {
    top: 50%;
  }
}
.address iframe {
  width: 100%;
}

.interest {
  background: #FFFFFF;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100%;
  transition: 0.2s ease;
  z-index: 30;
  left: 0%;
  opacity: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
@media only screen and (min-width: 1280px) {
  .interest {
    display: grid;
    grid-template-columns: 38% 58%;
    grid-template-rows: auto auto;
    grid-template-areas: "img form" "informations form";
    padding: 7em;
    gap: 4%;
    /* Scrollbar Styling : Firefox */
    scrollbar-width: thin;
    scrollbar-color: #008F70 #1F1F1F;
    /* Scrollbar Styling for Webkit browsers */
  }
  .interest::-webkit-scrollbar {
    width: 1.5rem;
  }
  .interest::-webkit-scrollbar-track {
    background: #1F1F1F;
  }
  .interest::-webkit-scrollbar-thumb {
    background: #FFFFFF;
    border-radius: 3px;
  }
  .interest::-webkit-scrollbar-thumb:hover {
    background: #008F70;
  }
}
@media only screen and (min-width: 1920px) {
  .interest {
    place-content: center;
    padding: 0 7em;
  }
}
.interest__close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .interest__close {
    /*right: 40px;*/
    /*top: 30px;*/
  }
}
@media only screen and (min-width: 1024px) {
  .interest__close {
    /*right: 60px;*/
    /*top: 60px;*/
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1600px) {
  .interest__close {
    right: 20px;
    top: 20px;
  }
}
.interest__close svg rect {
  fill: #FFFFFF;
}
@media only screen and (min-width: 768px) {
  .interest__close svg rect {
    fill: #008F70;
  }
}
.interest__img {
  grid-area: img;
  height: 366px;
}
@media only screen and (min-width: 768px) {
  .interest__img {
    height: 100%;
    padding: 10em 4em 2em 4em;
  }
}
@media only screen and (min-width: 1024px) {
  .interest__img {
    padding: 16em 6em 2em 6em;
  }
}
@media only screen and (min-width: 1280px) {
  .interest__img {
    padding: 0;
  }
}
.interest__img img {
  height: 366px;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .interest__img img {
    height: 100%;
  }
}
.interest__informations {
  grid-area: informations;
}
@media only screen and (min-width: 1280px) {
  .interest__informations {
    align-self: end;
    align-self: flex-end;
  }
}
.interest__informations__text {
  padding: 1em 20px;
}
@media only screen and (min-width: 768px) {
  .interest__informations__text {
    padding: 1.5em 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .interest__informations__text {
    padding: 1.5em 60px;
  }
}
@media only screen and (min-width: 1280px) {
  .interest__informations__text {
    padding: 0;
  }
}
.interest__informations__price {
  padding: 0 20px;
  padding-bottom: 1em;
  color: #008F70;
  font-size: 3.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 360px) {
  .interest__informations__price {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .interest__informations__price {
    padding: 0 40px;
    padding-bottom: 1em;
  }
}
@media only screen and (min-width: 1024px) {
  .interest__informations__price {
    padding: 0 60px;
    padding-bottom: 1em;
  }
}
@media only screen and (min-width: 1280px) {
  .interest__informations__price {
    padding: 0;
    padding-top: 0.5em;
  }
}
.interest__informations__details {
  background: #f0f5f5;
  padding: 2em;
}
@media only screen and (min-width: 768px) {
  .interest__informations__details {
    margin: 0 4em;
  }
}
@media only screen and (min-width: 1024px) {
  .interest__informations__details {
    margin: 0 6em;
  }
}
@media only screen and (min-width: 1280px) {
  .interest__informations__details {
    margin: 0;
    margin-top: 2em;
  }
}
.interest__informations__details__title {
  color: #2D776E;
  font-size: 2.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 360px) {
  .interest__informations__details__title {
    font-size: 2rem;
  }
}
.interest__informations__details__specs {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: #FFFFFF;
  height: 51px;
  margin-top: 2em;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
}
.interest__informations__details__specs__bedrooms, .interest__informations__details__specs__size, .interest__informations__details__specs__bathroom {
  display: flex;
  align-items: center;
}
.interest__informations__details__specs__bedrooms img, .interest__informations__details__specs__size img, .interest__informations__details__specs__bathroom img {
  margin-right: 5px;
  width: 15px;
  height: 15px;
}
@media only screen and (min-width: 1024px) {
  .interest__informations__details__specs__bedrooms img, .interest__informations__details__specs__size img, .interest__informations__details__specs__bathroom img {
    margin-right: 10px;
    width: 25px;
    height: 25px;
  }
}
.interest__informations__details__specs__bedrooms span, .interest__informations__details__specs__size span, .interest__informations__details__specs__bathroom span {
  margin-left: 5px;
}
@media only screen and (min-width: 1024px) {
  .interest__informations__details__specs__bedrooms span, .interest__informations__details__specs__size span, .interest__informations__details__specs__bathroom span {
    margin-left: 10px;
  }
}

.interest.hide {
  opacity: 0;
  left: 100%;
}

.interest__form {
  grid-area: form;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3em 2em;
}
@media only screen and (min-width: 768px) {
  .interest__form {
    padding: 3em 4em;
  }
}
@media only screen and (min-width: 1024px) {
  .interest__form {
    padding: 4em 6em 6em 6em;
  }
}
@media only screen and (min-width: 1280px) {
  .interest__form {
    padding: 0;
  }
}
.interest__form__inputs {
  display: grid;
  gap: 2em;
}
@media only screen and (min-width: 1024px) {
  .interest__form__inputs {
    grid-template-columns: 49% 49%;
    column-gap: 2%;
    row-gap: 2em;
  }
}
.interest__form__inputs__input, .interest__form__inputs__select {
  border: 1px solid #2D776E;
  width: 100%;
}
.interest__form__inputs__select {
  padding-right: 3em;
}
@media only screen and (min-width: 768px) {
  .interest__form__inputs__select {
    padding-right: 0;
  }
}
.interest__form__terms {
  grid-area: terms;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}
@media only screen and (min-width: 1024px) {
  .interest__form__terms {
    padding: 2em 0;
  }
}
.interest__form__terms input[type=checkbox] {
  align-self: flex-start;
}
.interest__form__terms a {
  text-decoration: none;
  color: #008F70;
  font-weight: 700;
}
.interest__form button {
  width: 100%;
  cursor: pointer;
}
@media only screen and (min-width: 1024px) {
  .interest__form button {
    width: 20%;
  }
}
@media only screen and (min-width: 1280px) {
  .interest__form button {
    transition: 0.2s linear;
  }
  .interest__form button:hover {
    background: #1F1F1F;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1366px) {
  .interest__form button {
    width: 30%;
  }
}

/*# sourceMappingURL=details.css.map */
