@charset "UTF-8";
/* ========= */
/* Font Face */
/* ========= */
/* Regular */
@font-face {
  font-family: "Geeza Pro";
  font-style: "normal";
  font-weight: 400;
  src: url("/fonts/Geeza Pro Regular.ttf") format("truetype"), local("Geeza Pro");
  font-display: swap;
}
/* Bold */
@font-face {
  font-family: "Geeza Pro";
  font-style: "normal";
  font-weight: 700;
  src: url("/fonts/Geeza Pro Bold.ttf") format("truetype"), local("Geeza Pro");
  font-display: swap;
}
/* ========== */
/* Typography */
/* ========== */
/* Standart mobile first typography */
h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 2.6rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

p,
span,
strong,
label,
a,
li {
  font-size: 1.6rem;
}

/* Mobile typography fixes for small screens: 320px ~ 360px */
@media only screen and (min-width: 320px) and (max-width: 360px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.6rem;
  }

  p,
span,
strong,
label,
a,
li {
    font-size: 1.4rem;
  }
}
/* Tablet typography: 768px+ */
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  h3 {
    font-size: 2.2rem;
  }

  h4 {
    font-size: 1.8rem;
  }

  p,
span,
strong,
label,
a,
li {
    font-size: 1.6rem;
  }
}
/* Tablet typography: 1024px+ */
@media only screen and (min-width: 1024px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  h3 {
    font-size: 2.4rem;
  }

  h4 {
    font-size: 1.8rem;
  }

  p,
span,
strong,
label,
a,
li {
    font-size: 1.6rem;
  }
}
/* Computer typography: 1280px+ */
@media only screen and (min-width: 1280px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  h3 {
    font-size: 2.4rem;
  }

  h4 {
    font-size: 1.8rem;
  }

  p,
span,
strong,
label,
a,
li {
    font-size: 1.6rem;
  }
}
/* Computer typography: 1440px+ */
@media only screen and (min-width: 1440px) {
  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 3.4rem;
  }

  h3 {
    font-size: 2.6rem;
  }

  h4 {
    font-size: 1.8rem;
  }

  p,
span,
strong,
label,
a,
li {
    font-size: 1.6rem;
  }
}
/* Computer typography: 1920px+ */
@media only screen and (min-width: 1920px) {
  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3.6rem;
  }

  h3 {
    font-size: 2.8rem;
  }

  h4 {
    font-size: 1.8rem;
  }

  p,
span,
strong,
label,
a,
li {
    font-size: 1.6rem;
  }
}
/* Computer typography: 2560px+ */
@media only screen and (min-width: 2560px) {
  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3.8rem;
  }

  h3 {
    font-size: 3rem;
  }

  h4 {
    font-size: 2rem;
  }

  p,
span,
strong,
label,
a,
li {
    font-size: 1.8rem;
  }
}
/* ====== */
/* Resets */
/* ====== */
html {
  box-sizing: border-box;
  /* Font family */
  font-family: "Verdana", "sans-serif";
  /* To make rem units easier to work with (1rem = 10px) */
  font-size: 62.5%;
  /* Scrollbar Styling : Firefox */
  scrollbar-width: thin;
  scrollbar-color: #008f70 #1f1f1f;
  /* Scrollbar Styling for Webkit browsers */
}
html::-webkit-scrollbar {
  width: 1.5rem;
}
html::-webkit-scrollbar-track {
  background: #1f1f1f;
}
html::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 3px;
}
html::-webkit-scrollbar-thumb:hover {
  background: #008f70;
}

html:lang(ar) {
  font-family: "Geeza Pro Bold", sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}

/* Uncomment if custom outline is planned for each element needed */
/* :focus {
     outline: none;
}*/
/* Links decoration */
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Remove default list styling */
ul,
ol {
  list-style: none;
}

body {
  min-height: 100vh;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* ========== */
/* Utilities */
/* ========== */
/* Container */
.ss-container {
  margin: 0 auto;
  width: 90%;
  max-width: 1920px;
}
@media only screen and (min-width: 1920px) {
  .ss-container {
    width: 85%;
  }
}
@media only screen and (min-width: 2560px) {
  .ss-container {
    width: 70%;
  }
}

/* Video container */
.ss-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

/* Text Alignement */
/* Left */
.ss-align-left {
  text-align: left;
}

/* Right */
.ss-align-right {
  text-align: right;
}

/* Center */
.ss-align-center {
  text-align: center;
}

/* General Alignement */
/* Flex */
.ss-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ss-flex-v-center {
  display: flex;
  align-items: center;
}

.ss-flex-h-center {
  display: flex;
  justify-content: center;
}

/* Grid */
.ss-grid-center {
  display: grid;
  place-content: center;
  place-items: center;
}

/* To round elements as a circle */
.ss-circle {
  border-radius: 50%;
}

/* Scale transition animation */
.ss-scale-transition {
  transition: transform 0.3s cubic-bezier(0.53, 0.01, 0.36, 1.63);
}

/* Box shadows */
.ss-shadow-1 {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.07), 0 3px 1px -2px rgba(0, 0, 0, 0.06), 0 1px 5px 0 rgba(0, 0, 0, 0.1);
}

.ss-shadow-2 {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.07), 0 1px 10px 0 rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.ss-shadow-3 {
  box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.07), 0 3px 14px 2px rgba(0, 0, 0, 0.06), 0 5px 5px -3px rgba(0, 0, 0, 0.1);
}

.ss-shadow-4 {
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.07), 0 6px 30px 5px rgba(0, 0, 0, 0.06), 0 8px 10px -7px rgba(0, 0, 0, 0.1);
}

.ss-shadow-5 {
  box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.07), 0 9px 46px 8px rgba(0, 0, 0, 0.06), 0 11px 15px -7px rgba(0, 0, 0, 0.1);
}

/* Prevent content from wrapping and forcing it into single line with ellipsis at the end */
.ss-ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* Removing default appearance */
.ss-no-appearance {
  -webkit-appearance: none;
  appearance: none;
}

/* Prevent scrolling while the navigation menu is open */
.ss-prevent-scroll {
  overflow: hidden;
}

/* Overlay */
.ss-overlay {
  width: 100vw;
  height: 100vh;
  background: #1f1f1f;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  opacity: 0.8;
  display: none;
}

.ss-overlay.active {
  display: block;
}

/* Table with spacing inside only */
.ss-table-inspacing td {
  border: 0px solid transparent;
  background-clip: padding-box;
}
.ss-table-inspacing tr > td + td {
  border-left-width: 5px;
}
.ss-table-inspacing tr > td {
  border-top-width: 5px;
}

/* Header */
.header {
  position: relative;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding-left: 1em;
  background: #ffffff;
}
@media only screen and (min-width: 768px) {
  .header {
    height: 129px;
    padding-left: 2em;
  }
}
@media only screen and (min-width: 1024px) {
  .header {
    position: fixed;
    display: grid;
    grid-template-columns: 10% 1fr 10%;
    padding: 0 5em;
  }
}
@media only screen and (min-width: 1280px) {
  .header {
    grid-template-columns: 21% 1fr 21%;
  }
}
@media only screen and (min-width: 1920px) {
  .header {
    grid-template-columns: 15% 1fr 15%;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1366px) {
  .header {
    height: 100px;
  }
}
.header__language__container {
  position: relative;
  z-index: 2;
  width: 93px;
  height: 28px;
  border: 1px solid #008f70;
  border-radius: 33px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  cursor: pointer;
  background: #ffffff;
  transition: background 0.3s linear;
}
.header__language__container svg.rotated {
  transform: rotate(180deg);
}
.header__language__container svg path {
  transition: fill 0.3s linear;
}
.header__language__container__selected {
  font-size: 1.3rem;
  color: #008f70;
  transition: color 0.3s linear;
}
@media only screen and (min-width: 1280px) {
  .header__language__container:hover {
    background: #008f70;
  }
  .header__language__container:hover svg path {
    fill: #ffffff;
  }
  .header__language__container:hover .header__language__container__selected {
    color: #ffffff;
  }
}
.header__language__container__dropdown {
  width: 93px;
  position: absolute;
  text-align: center;
  display: grid;
  height: 70px;
  top: 70px;
  background: #008f70;
  border-radius: 5px;
  right: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header__language__container__dropdown__link {
  color: #ffffff;
  font-size: 1.3rem;
  height: 35px;
}
.header__language__container__dropdown__link:hover {
  text-decoration: underline;
}
.header__language__container__dropdown__link:first-child {
  border-bottom: 1px solid #ffffff;
}
.header__language__container .hidden {
  display: none;
}
.header__logo {
  width: 151px;
  height: 41px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .header__logo {
    width: 287px;
    height: 77px;
  }
}
@media only screen and (min-width: 1024px) {
  .header__logo {
    width: 337px;
    height: 91px;
    place-self: center;
  }
}
.header__question {
  width: 55%;
  position: absolute;
  top: calc(50% + 70px);
  right: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  z-index: 1;
}
@media only screen and (max-width: 360px) {
  .header__question {
    width: 65%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .header__question {
    width: 30%;
    top: calc(50% + 129px);
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1024px) {
  .header__question {
    width: 20%;
    text-align: right;
    top: 50%;
    right: -5%;
    left: unset;
    color: #008f70;
  }
}
@media only screen and (min-width: 1280px) {
  .header__question {
    width: 100%;
    position: unset;
    transform: unset;
  }
}
@media only screen and (min-width: 2560px) {
  .header__question {
    width: 55%;
    justify-self: end;
    justify-self: flex-end;
  }
}
.header__question.ar {
  font-size: 2.2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .header__question.ar {
    font-size: 3.1rem;
  }
}
@media only screen and (min-width: 1024px) {
  .header__question.ar {
    font-size: 2.6rem;
  }
}
@media only screen and (min-width: 2560px) {
  .header__question.ar {
    width: 100%;
    font-size: 3.1rem;
  }
}

/* Navigation */
/* Sidebar */
/* Footer */
.footer {
  height: 52px;
  width: 100%;
  color: #ffffff;
  background: #008f70;
}
@media only screen and (min-width: 1280px) {
  .footer {
    position: relative;
    bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .footer {
    height: 71px;
  }
  .footer__copyright {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 2560px) {
  .footer {
    height: 95px;
  }
  .footer__copyright {
    font-size: 1.8rem;
  }
}

/* ======== */
/* Home CSS */
/* ======== */
.hero {
  width: 100%;
  height: 583px;
  background-image: url("../images/amused-arabian-couple.png");
  background-repeat: no-repeat;
  background-size: 1247.14px 831.38px;
  background-position: top;
  background-position-x: left;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-transform: uppercase;
  color: #ffffff;
  gap: 42px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(37, 112, 107, 0.58);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .hero {
    height: calc(100vh - 420px);
    background-size: 1918.72px 1279.07px;
    background-position-y: 25%;
  }
}
@media only screen and (min-width: 1024px) {
  .hero {
    height: calc(100vh - 207px);
    background-size: 1918.72px 1279.07px;
    background-position-y: 30%;
  }
}
@media only screen and (min-width: 1280px) {
  .hero {
    height: calc(100vh - 219px);
    justify-content: end;
    justify-content: flex-end;
    padding-right: 5em;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1366px) {
  .hero {
    height: calc(100vh - 172px);
  }
}
@media only screen and (min-width: 2560px) {
  .hero {
    height: calc(100vh - 365px);
  }
}
.hero__title {
  font-size: 3.4rem;
  font-weight: 700;
}
@media only screen and (max-width: 360px) {
  .hero__title {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .hero__title {
    font-size: 6.8rem;
  }
}
@media only screen and (min-width: 1024px) {
  .hero__title {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1366px) {
  .hero__title {
    font-size: 6.8rem;
  }
}
.hero__title.ar {
  width: 80%;
  line-height: 1.6;
  font-size: 4.2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .hero__title.ar {
    width: 90%;
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1024px) {
  .hero__title.ar {
    width: 100%;
    font-size: 8rem;
  }
}
@media only screen and (min-width: 2560px) {
  .hero__title.ar {
    font-size: 9rem;
  }
}
.hero__text {
  font-size: 2.8rem;
  line-height: 1.6;
}
@media only screen and (max-width: 360px) {
  .hero__text {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .hero__text {
    font-size: 3.4rem;
  }
}
@media only screen and (min-width: 1024px) {
  .hero__text {
    font-size: 4.1rem;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1366px) {
  .hero__text {
    font-size: 3.4rem;
  }
}

.services {
  z-index: 1;
  background: #F2F2F2;
  height: 775px;
}
@media only screen and (min-width: 768px) {
  .services {
    height: 220px;
  }
}
@media only screen and (min-width: 1024px) {
  .services {
    height: 155px;
  }
}
@media only screen and (min-width: 1280px) {
  .services {
    height: 167px;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1366px) {
  .services {
    height: 120px;
  }
}
@media only screen and (min-width: 2560px) {
  .services {
    height: 270px;
  }
}
.services__container {
  position: relative;
  bottom: 165px;
  height: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .services__container {
    flex-direction: row;
    height: 100%;
    bottom: 90px;
  }
}
@media only screen and (min-width: 1024px) {
  .services__container {
    bottom: 145px;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1366px) {
  .services__container {
    width: 60%;
    bottom: 80px;
  }
}
@media only screen and (min-width: 1440px) {
  .services__container {
    width: 65%;
    bottom: 110px;
  }
}
@media only screen and (min-width: 1600px) {
  .services__container {
    width: 60%;
  }
}
@media only screen and (min-width: 1920px) {
  .services__container {
    width: 50%;
  }
}
@media only screen and (min-width: 2560px) {
  .services__container {
    width: 57.5%;
    bottom: 150px;
  }
}
.services__container__element {
  width: 274px;
  height: 274px;
  border-radius: 44px;
  background: #ffffff;
  place-content: space-evenly;
}
.services__container__element:link, .services__container__element:visited, .services__container__element:hover, .services__container__element:active {
  text-decoration: none;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .services__container__element {
    width: 196px;
    height: 196px;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1366px) {
  .services__container__element {
    width: 196px;
    height: 196px;
  }
}
@media only screen and (min-width: 2560px) {
  .services__container__element {
    width: 438px;
    height: 438px;
  }
}
.services__container__element__name {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}
.services__container__element__name.ar {
  font-size: 3.2rem;
}
@media only screen and (min-width: 768px) {
  .services__container__element__name.ar {
    font-size: 2.7rem;
  }
}
@media only screen and (min-width: 2560px) {
  .services__container__element__name.ar {
    font-size: 4rem;
  }
}
.immo .services__container__element__name {
  color: #0093FF;
}
.occaz .services__container__element__name {
  color: #25706b;
}
.neuf .services__container__element__name {
  color: #1f1f1f;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .services__container__element__icon {
    width: 71px;
  }
  .services__container__element__name {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1366px) {
  .services__container__element__icon {
    width: 71px;
    height: 71px;
  }
  .services__container__element__name {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 2560px) {
  .services__container__element__icon {
    width: 158px;
    height: 158px;
  }
  .services__container__element__icon img {
    width: 158px;
    height: 158px;
  }
  .services__container__element__name {
    font-size: 2rem;
  }
}

.new {
  position: relative;
}
.new::after {
  content: "NEW";
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  position: absolute;
  background: #008f70;
  width: 56px;
  height: 25px;
  border-radius: 21px;
  display: grid;
  place-content: center;
  top: 7%;
  right: 7%;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .new::after {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 2560px) {
  .new::after {
    width: 89px;
    height: 40px;
  }
}

.new-ar {
  position: relative;
}
.new-ar::after {
  content: "جديد";
  font-size: 1.8rem;
  padding-bottom: 4px;
  font-weight: 700;
  color: #ffffff;
  position: absolute;
  background: #008f70;
  width: 56px;
  height: 25px;
  border-radius: 21px;
  display: grid;
  place-content: center;
  top: 7%;
  right: 7%;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .new-ar::after {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 2560px) {
  .new-ar::after {
    width: 89px;
    height: 40px;
    font-size: 2.6rem;
    padding-bottom: 8px;
  }
}

/* ======== */
/* Main CSS */
/* ======== *//*# sourceMappingURL=main.css.map */