* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}
:root {
  --brand-color: #f7be18;
}
body {
  font-family: "Cairo", sans-serif;
}

.container {
  max-width: 1140px;
  width: 95%;
  padding-inline: 15px;
  margin-inline: auto;
}
.landing {
  background-color: rgb(2 35 138);
}
header {
  margin: auto;
  padding: 15px;

  position: relative;
  z-index: 100000;
  color: white;
  background-color: black;
}
header .logo {
  text-transform: capitalize;
  margin-right: 10px;
  font-weight: bold;
}
.logo:hover {
  color: var(--brand-color);
}
header ul {
  display: flex;
  flex-direction: row-reverse;
  gap: 8px;
}
header ul li {
  padding: 8px 15px;
  color: var(--brand-color);

  cursor: pointer;

  font-weight: bold;
}
header nav {
  flex-direction: row-reverse;
  justify-content: space-between;
}
header ul li.active {
  background-color: var(--brand-color);
  border-radius: 16px;
  color: black;
}
header ul li:hover {
  background-color: var(--brand-color);
  border-radius: 16px;
  color: black;
}

.landing {
  overflow: hidden;
  position: relative;
  background-image: url("images/herolanding.jpeg");
  background-size: cover;
  min-height: 100vh;
}
.logo img {
  width: 64px;
  height: 46px;
  color: black;
  background-color: white;
}
.landing .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
header i.menu {
  display: none;
  cursor: pointer;
  font-size: 28px;
  color: white;
}
@media (width <=767px) {
  header i.menu {
    display: block;
  }
  header nav {
    flex-direction: row;
  }
  .links {
    display: none;
  }
}
.open {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  min-height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
}
.close {
  text-transform: capitalize;
  font-weight: bold;
  color: #fff;
  background-color: red;
  border-radius: 100%;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
}

.intro-text {
  position: relative;
  text-align: center;
  z-index: 10;
  margin: auto;
}
.intro-text h1 {
  color: var(--brand-color);
  font-size: 60px;
  text-align: center;
  margin-top: 60px;
  font-weight: bold;
  margin-bottom: 30px;
}
.intro-text p {
  color: white;
  font-size: 24px;
}
.intro-text p.discount {
  margin: auto;
  margin-top: 30px;
  font-style: italic;
  font-size: 30px;
  border-bottom: 5px solid var(--brand-color);
  width: fit-content;
  padding: 15px;
  font-weight: bold;
  border-radius: 16px;
}
.phone {
  position: relative;
  display: block;
  padding: 15px 30px;
  background-color: #2196f3;
  font-weight: bold;
  width: fit-content;
  border-radius: 16px;
  color: white;
  margin: auto;
  margin-top: 40px;
  transition: 0.3s;
}
@media (width <=767px) {
  .intro-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .intro-text h1 {
    font-size: 30px;
  }
  .intro-text p {
    font-size: 16px;
  }
  .intro-text p.discount {
    margin-top: 14px;
    font-size: 14px;
  }
  .phone {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
  }
}
.phone:hover {
  background-color: #43a6f7;
  background-color: red;
}

/* about */
.about {
  padding-block: 60px;
  /* background-color: #eee; */
}
@media (width <= 480px) {
  .about .container {
    flex-direction: column;
  }
}
.about .text {
  text-align: right;
}
.about .text h2 {
  margin-left: auto;
  font-weight: bold;
  font-size: 48px;
  position: relative;
  width: fit-content;
  padding-bottom: 15px;
  margin-bottom: 60px;
}
.about .text h2::before {
  position: absolute;
  font-family: "Font Awesome 7 Free";
  content: "\f178";
  font-weight: 900;
  color: red;
  font-size: 30px;
  top: 50%;
  transform: translateY(-50%);
  left: -80px;
  animation: goright 0.3s linear infinite;
}
.about .text h2::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  height: 3px;
  width: calc(100% - 20px);
  background-color: #2196f3;
}
@media (width <=767px) {
  .about .text h2 {
    font-size: 28px;
    margin-bottom: 18px;
  }
}

@keyframes goright {
  0% {
    left: -80px;
  }
  100% {
    left: -62px;
  }
}
.about .text h2 span {
  color: var(--brand-color);
}

.text p {
  line-height: 1.6;
  font-size: 21px;
}
@media (width <=767px) {
  .about .text p {
    font-size: 14px;
    /* margin-bottom: 18px; */
  }
}
.about .holder {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.about img {
  width: 280px;
  max-width: 100%;
  margin-top: 50px;
}
@media (width <=767px) {
  .about img {
    width: 240px;
  }
}
@media (width <= 480px) {
  .about .container .image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
/* about */
/* products */
.products {
  padding-block: 60px;
  background-color: #eee;
}
.products h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
}

.track {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.card {
  width: calc((100% - 60px) / 3);
  position: relative;
  padding-top: 80px;
  padding-bottom: 10px;
  border-radius: 16px;
  margin: 5px;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 30px;
  box-shadow: 0 0 10px #1a0dab;
}
@media (width <= 767px) {
  .track .card {
    width: calc((100% - 40px) / 2);
  }
}
@media (width <= 480px) {
  .track .card {
    width: calc((100% - 20px));
  }
}
.card::before,
.card::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
}
.card::before {
  background-color: #1a0dab;
  transform: rotate(50deg);
  top: -44%;
  left: -50%;
  z-index: 10;
}
.card::after {
  background-color: #4437dd;
  transform: rotate(-55deg);
  top: -34%;
  left: 72%;
}
.card img {
  max-width: 100%;
  width: 170px;
  height: 170px;
  border-radius: 100%;
  margin: auto;
  position: relative;
  z-index: 10;
  margin-bottom: 35px;
}
@media (width <= 767px) {
  .track img {
    width: 140px;
    height: 140px;
  }
}
.card .text-content {
  position: relative;
}
.card .text-content h4 {
  position: absolute;
  top: -270px;
  color: white;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  z-index: 1000;
  font-size: 24px;
  font-weight: bold;
}
@media (width <= 767px) {
  .track .text-content h4 {
    font-size: 18px;
    top: -195%;
  }
}
.card .text-content p {
  text-align: center;
  line-height: 1.7;
  padding: 12px;
  height: 120px;
  font-size: 18px;
}
@media (width <= 767px) {
  .track .text-content p {
    font-size: 14px;
  }
}
.card .btn {
  display: block;
  cursor: pointer;
  background-color: var(--brand-color);
  width: fit-content;
  padding: 8px 16px;
  border-radius: 8px;
  margin: 60px auto;
  transition: 0.3s;
}
@media (width <= 767px) {
  .track .btn {
    margin: 30px auto;
  }
}
.card .btn:hover {
  color: #fff;
  background-color: #1a0dab;
}

/* thebeast */
.thebest {
  padding-block: 60px;
  /* background-color: #777; */
}
.thebest h2 {
  text-align: center;
  font-size: 40px;
  color: black;
  width: fit-content;
  padding: 8px 16px;
  margin: auto;
  margin-bottom: 30px;
  border-radius: 16px;
  background-color: #fff;
}
.thebest .thebest-hero {
  text-align: center;
  color: white;
  font-size: 18px;
}
.thebest .hero {
  display: flex;

  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.thebest .hero .feat {
  width: calc((100% - 142px) / 4);
  margin: 0 15px;
  text-align: center;
}
@media (width <= 767px) {
  .thebest .hero .feat {
    width: calc((100% - 70px) / 2);
    margin-bottom: 20px;
  }
}
@media (width <= 480px) {
  .thebest .hero .feat {
    width: calc((100% - 30px));
    margin-bottom: 20px;
  }
}
.thebest .hero .feat img {
  width: 128px;
  /* height: 60px */
  margin: auto;
}
.thebest .hero .feat p {
  margin-top: 30px;
}
/* thebeast */
.delay-paying {
  padding-block: 60px;
  background-color: #eee;
}
.delay-paying img {
  margin: 0 auto;
}

/* ########################## */
.scrool {
  padding-block: 80px;
}
.mySwiper {
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

.swiper-slide {
  transition: 0.5s;
}

.swiper-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  transform: scale(0.85);
  filter: blur(4px);
  opacity: 0.5;
  transition: 0.5s;
}

/* الصورة اللي في النص */
.swiper-slide-active img {
  transform: scale(1);
  filter: blur(0);
  opacity: 1;
}

/* موبايل */
@media (max-width: 768px) {
  .swiper-slide img {
    height: 320px;
  }
}

/* ########################## */
.contact {
  padding-block: 80px;
  background-color: #eee;
}
.contact .container {
  text-align: center;
}
.contact .container h2 {
  position: relative;
  font-size: 34px;
  width: fit-content;
  margin: auto;
  padding-bottom: 30px;
}
.contact .container h2::after {
  position: relative;
  content: "";
  width: 60%;
  height: 3px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: green;
  display: block;
}
.contact .vision {
  text-align: center;
}
.contact .info img {
  width: 200px;
  margin: auto;
  margin-bottom: 20px;
}
.contact .addres {
  font-style: italic;
  line-height: 1.6;
  font-size: 24px;
}
.contact .addres a {
  display: block;
  font-size: 24px;
  cursor: pointer;
  font-weight: bold;
  color: #1a0dab;
  transition: 0.3s;
}
.contact .addres a:hover {
  color: red;
}

/* footer */
.footer {
  padding-block: 15px;
  background-color: black;
  color: white;
  transition: 0.4s;
}
.footer .container {
  text-align: right;
  display: flex;

  align-items: center;
  justify-content: space-between;
}
.footer a:hover {
  color: red;
}

@media (width <= 768px) {
  .footer .container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .footernav {
    margin-bottom: 20px;
  }
  .footernav ul li {
    display: block;
    margin: 0 5px;
    font-size: 14px;
  }
  .copyrights h3 {
    margin-bottom: 15px;
  }
}
/* footer */
/* askingpage  */
.asking {
  padding-block: 60px;
}
.asking h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 50px;
  font-size: 32px;
}
.asking h2::after {
  position: absolute;
  content: "";
  width: 40%;
  height: 3px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--brand-color);
}
.ask {
  width: 80%;
  max-width: 600px;
  margin: 15px auto;
  text-align: right;
  padding: 15px;
  line-height: 32px;
  font-weight: bold;
  height: 55px;
  overflow: hidden;
  box-shadow: 0 0 10px #eee;
  position: relative;
  border-bottom: 1px solid #1a0dab;
}

.ask .s {
  margin-bottom: 40px;
  transition: 0.5s;
}
.fit-contents {
  height: fit-content;
}
.ask i {
  display: block;
  position: absolute;
  left: 25px;
  font-weight: bold;
  font-size: 24px;
  top: 16px;
  cursor: pointer;
  transition: transform 0.5s;
}
.rotat {
  transform: rotate(180deg);

  transition: 0.5s;
}
@media (width<= 768px) {
  .ask {
    width: 95%;
  }
  .ask .s {
    font-size: 14px;
  }
  .ask i {
    left: 5px;
  }
}
/* askingpage  */

/* bedrooms */
.main {
  padding-block: 60px;
}
.main .container h2 {
  position: relative;
  font-size: 34px;
  width: fit-content;
  margin: auto;
  margin-bottom: 50px;
}
.h2header {
  position: relative;
  font-size: 34px;
  width: fit-content;
  margin: 50px auto;
  margin-bottom: 50px;
  font-weight: bold;
}
.main .container .header:after {
  position: absolute;
  content: "";
  height: 3px;
  width: 80%;
  background-color: var(--brand-color);
  bottom: -30px;
  left: 50%;
  transform: translate(-50%);
}
.main .content {
  display: flex;
}
.main .content .text h2 {
  font-size: 30px;
  font-weight: bold;
  text-align: right;
}
.main .content .text p {
  text-align: right;
  font-size: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--brand-color);
}
ol {
  list-style: none;
  padding-right: 20px;
  text-align: right;
}

ol li::after {
  content: "•";
  margin-left: 8px;
}

.aska {
  margin: 15px 0;
  font-size: 24px;
  font-weight: bold;
  text-align: right;
}
.answer {
  text-align: right;
}
.bb {
  border-bottom: 2px solid var(--brand-color);
  padding-bottom: 20px;
}

.imgs-holder {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.imgs-holder img {
  width: calc((100% - 60px) / 3);
  margin: 0 15px;
}

.main .content .image {
  margin-left: 20px;
  min-width: 180px;
}
.main .content img {
  width: 100%;
}
@media (width <=767px) {
  .main .part .content {
    flex-direction: column-reverse;
  }
}
@media (width <= 480px) {
  .main .content .image {
    margin-bottom: 50px;
  }
}
.fixed-contact {
  position: fixed;
  z-index: 555555555;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
@media (width <=767px) {
  .fixed-contact {
    position: sticky;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--brand-color);

    flex-direction: row;

    padding: 5px;
  }
}
.fixed-contact > div {
  flex: 1;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fixed-contact > div i {
  font-size: 30px;
}
.fixed-contact .wtsapp i {
  color: green;
  margin-bottom: 20px;
}
@media(width<= 767px){
 .fixed-contact .wtsapp i{
    margin-bottom: 0;
  }
}
.fixed-contact .call i {
  color: red;
}
.fixed-contact > div span {
  display: none;
  color: #1a0dab;
  font-weight: bold;
}
@media (width <=767px) {
  .fixed-contact > div span {
  display: block;
  
  font-weight: normal;
}
}
.fixed-contact a {
  display: block;
  text-align: center;
  transition: 0.4s;
}

/* bedrooms */
