* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
  direction: rtl;
}

section {
  display: flex;
}


html,
body {
  position: relative;
  height: 100%;
}

body {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.content {
  display: flex;
  justify-content: space-evenly;
  flex-basis: 100%;
}

swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.data {
  display: flex;
  flex-direction: column;
  padding: 50px;
  justify-content: space-evenly;
  max-width: 40%;
  overflow: auto;
}

.data_img {
  width: fit-content;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 20px;
  justify-content: space-evenly;
}


.contact {
  display: flex;
  height: fit-content;
  border-radius: 7px;
  flex-wrap: wrap;
  position: relative;
  flex-direction: column;
}

.contact2 {
  display: none;
}

body.scrolled .contact2 {
  opacity: 0;
}

.contact p,
.contact2 p {
  display: flex;
  width: 100%;
  justify-content: center;
}



ion-icon {
  font-size: x-large;
  margin: 10px;
}

.material-symbols-outlined {
  margin: 10px;
}

.contact a:not(.show_profile),
.contact2 a:not(.show_profile) {
  text-decoration: none;
  color: rgb(255, 255, 255);
  background-color: black;
  font-size: larger;
  padding: 15px 10px;
  border-radius: 4px;
  margin: 10px;
}

.contact a:not(.show_profile),
.contact2 a:not(.show_profile),
.share_button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.show_profile {
  text-decoration: none;
  color: black;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.show_profile img {
  width: 50px;
  height: 50px;
  border-radius: 1000px;
  object-fit: cover;
  margin: 10px;
}

.intro-data h2 {
  font-size: 30px;
  color: #464649;
}

.intro-data p {
  font-size: 20px;
  width: 90%;
}

.data p {
  font-size: 20px;
  width: fit-content;
}

.area_img,
.type_img,
.sale_rent_img,
.adress_img {
  width: 45px;
  margin-bottom: -20px;
  margin-left: 10px;
}

.share_button {
  position: relative;
  border: none;
  color: rgb(255, 255, 255);
  background-color: black;
  font-size: larger;
  padding: 15px 10px;
  border-radius: 4px;
  margin: 10px;
  text-align: center;
}

.share_options {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  width: auto;
  height: auto;
  transform: scale(0);
  border-radius: 10px;
  background: rgba(15, 15, 15, 0.5);
  color: white;
  padding: 20px;
  transition: .5s;
  transition-delay: .5s;
  flex-wrap: wrap;

}

.share_options.active {
  transform: scale(1);
  transition-delay: 0s;

}

.link_container {
  position: relative;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 40px;
  background-color: white;
  overflow: hidden;
  padding: 0 10px;
}

.link {
  border: none;
  outline: none;
}

.copy_btn {
  position: absolute;
  left: 0;
  cursor: pointer;
  background-color: black;
  color: white;
  border: none;
  height: 100%;
  width: 30%;
  text-transform: capitalize;
  font-size: 16px;
}

.x_img {
  width: 40px;
  filter: invert(100%);
}

.code {
  font-size: small !important;
  margin: 15px 0;
}

.size {
  border: 1px solid gray;
  border-radius: 100px;
  margin: 10px;
  width: 70px !important;
  text-align: center;
  display: inline-block;
  ;
}

.description {
  margin: 10px;
}

@media (max-width:694px) {
  swiper-container {
    width: 100%;
    height: 70%;
  }

  .content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .data {
    max-width: fit-content;
  }

  .data_img {
    display: contents;
  }

  .contact2{
    display: flex;
    height: fit-content;
    border-radius: 7px;
    flex-wrap: wrap;
    position: relative;
    flex-direction: row-reverse;
    position: fixed;
    bottom: 50px;
    left: 10px;
  }
}