@font-face {
  font-family: "Beiruti";
  src: url("../fonts/Beiruti-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Beiruti";
  src: url("../fonts/Beiruti-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Beiruti";
  src: url("../fonts/Beiruti-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Beiruti";
  src: url("../fonts/Beiruti-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Beiruti";
  src: url("../fonts/Beiruti-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Beiruti";
  src: url("../fonts/Beiruti-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Beiruti";
  src: url("../fonts/Beiruti-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Beiruti";
  src: url("../fonts/Beiruti-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

body {
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  --primary-color: #796f57; /* light brown */
  --secondary-color: #6d6249; /* brown */
}

body.normal {
  word-spacing: 0 !important;
  line-height: inherit !important;
  font-size: inherit !important;
}

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: "Beiruti", sans-serif;
}

a {
  text-decoration: none !important;
}

ul {
  list-style: none !important;
  padding: 0 !important;
}

.hide {
  display: none !important;
}

.slick-list {
  padding: 10px !important;
  padding-right: 0 !important;
}

#open-langs {
  position: relative;
}

#open-langs .langs-dropdown {
  position: absolute;
  left: 50%;
  top: 121%;
  background-color: #fff;
  width: 140px;
  height: 80px;
  border-radius: 8px;
  transform: translateX(-50%);
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.1);
  display: none;
}
#open-langs .langs-dropdown .content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  justify-content: space-around;
  height: 100%;
}

#open-langs.en .langs-dropdown .content {
  align-items: flex-start;
}

#open-langs .langs-dropdown .content a {
  color: #000;
  transition: 0.3s;
  width: 100%;
  text-align: right;
  padding-right: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  height: 30px;
  padding-left: 10px;
}

#open-langs .langs-dropdown .content a:hover {
  color: #0f9c8e;
  background-color: #98eee5;
}
.hide-lg {
  display: none;
}

@media (max-width: 950px) {
  .hide-sm {
    display: none;
  }

  .hide-lg {
    display: block;
  }
}

.whatsapp-icon {
  background-color: #429c42;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 58px;
  border-radius: 16px 16px 0 0;
  position: absolute;
  right: -51px;
  top: 50%;
  transform: translateY(-50%) rotate(270deg);
  color: #fff;
  direction: rtl;
  gap: 9px;
  font-size: 24px;
  z-index: 60;
  transition: 0.3s;
}


.whatsapp-icon.en {
  right: inherit;
  left: -51px;
  border-radius: 0 0 16px 16px;
}


.whatsapp-icon:hover{
  background-color: #fff;
  color: #429c42;

}

button:disabled {
  background-color: #ccc !important;
  color: #666 !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}
/* General */

/* Start Nav Section */

nav {
  background-color: #0f9c8e;
  position: fixed;
  width: 100%;
  z-index: 60;
}

nav .nav-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

nav .nav-content .lang-dropdown button:not(.open-nav) {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  color: #fff;
  background-color: transparent;
  outline: none;
  border: none;
  font-size: 18px;
}

nav .nav-content .lang-dropdown button img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 50%;
}

nav .nav-content .nav-elements ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  color: #fff;
  padding: 0 !important;
  margin: 0;
}

nav .nav-content .nav-elements ul li a {
  color: #f5f5f5;
  transition: 0.3s;
}

nav {
  transition: all 0.3s ease;
}

.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #b3b3b3;
  z-index: 1000;
}

nav.fixed-nav .nav-content .nav-elements ul li a {
  color: #b3b3b3;
}

nav.fixed-nav .nav-content .nav-elements ul li a:hover {
  color: #0f9c8e;
}

nav .nav-content .nav-elements ul li a:hover {
  color: #fff;
}

nav .nav-content .logo img {
  width: 145px;
  height: 80px;
  object-fit: contain;
}

nav .open-nav {
  display: none;
}

nav .close-nav {
  display: none;
}

nav.fixed-nav .nav-content button {
  color: #757575 !important;
}

nav.fixed-nav .nav-content button.open-nav img {
  color: #000;
  filter: invert(1);
}
/* End Nav Section */

/* Start Hero Section */

.hero {
  position: relative;
  padding-top: 35px;
}

.hero .brokenline {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: none;
}

.hero > img.line {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 200px;
}

.hero .image img {
  width: 100%;
  object-fit: contain;
  height: 700px;
  margin-top: 69px;
}

.hero .text {
  text-align: right;
  margin-top: 170px;
}

.hero .text h1 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 50px;
}
.hero .text h1 span {
  color: #0f9c8e;
}

.hero .text p {
  direction: rtl;
  font-size: 24px;
  font-weight: 500;
  color: #757575;
  margin-bottom: 32px;
}

.links.google-apple img {
  border-radius: 9px;
  width: 190px;
  height: 57px;
  object-fit: contain;
}

.hero .text h5 {
  margin-top: 13px;
  margin-bottom: 40px;
  font-size: 18px;
  color: #0f9c8e;
  direction: rtl;
}

.hero .text > img {
  width: 240px;
  height: 240px;
  object-fit: contain;
}

/* End Hero Section */

/* Start WhyUs Section */

.why-us {
  position: relative;
  margin-top: 20px;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9f7f8;
}

.why-us .header{
  display: flex
  ;
      flex-direction: row;
      align-items: center;
      justify-content: center;
}

.why-us .header h1{
  display: flex;
      flex-direction: row;
      align-items: center;
      gap: 10px;
      text-align: center;
      font-weight: 700;
      font-size: 72px;
      color: #1E1E1E;
      margin-bottom: 21px;
}

.why-us .header img{
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.why-us.en .header{
  direction:rtl;
}



.why-us > img.line {
  position: absolute;
  bottom: 20%;
  left: 0;
  transform: rotate(188deg);
}

.why-us .image {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.why-us .image img:nth-child(1) {
  width: 85%;
  object-fit: contain;
  height: 435px;
}

.why-us .image img.circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.why-us .text {
  margin-bottom: 80px;
  height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: right;
  direction: rtl;
}

.why-us .text h1 {
  font-size: 32px;
  font-weight: 700;
}

.why-us .text p {
  font-size: 24px;
  color: #757575;
  font-weight: 500;
  width: 70%;
}

.ad-whyus {
  background-color: #1eac9e;
  border-radius: 24px;
  position: relative;
}

.ad-whyus > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.ad-whyus .phones {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 454px;
}

.ad-whyus .phones img:nth-child(1) {
  position: absolute;
  top: -103px;
  left: 0;
  width: 330px;
  height: 557px;
  object-fit: contain;
}

.ad-whyus .phones img:nth-child(2) {
  position: absolute;
  left: 115px;
  top: -85px;
  width: 347px;
  height: 557px;
  object-fit: contain;
}

.ad-whyus .text {
  height: 100%;
  margin: 0;
  position: relative;
  z-index: 2;
}

.ad-whyus .text h1 {
  font-size: 64px;
  color: #fff;
  margin-bottom: 31px;
}

/* End WhyUs Section */

/* Start Categories Section */

.categories {
  position: relative;
  margin-top: 130px;
  margin-bottom: 140px;
}

.categories > img.line {
  position: absolute;
  bottom: -39%;
  left: 0;
  transform: rotate(173deg);
}

.categories .header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  margin-bottom: 14px;
}

.categories .header h1 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
}

.categories .header p {
  font-size: 18px;
  color: #757575;
  font-weight: 500;
}

.categories .category {
  width: 100%;
  border-radius: 24px;
  height: 231px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 14px;
}

.categories .category h2 {
  font-size: 24px;
  color: #000;
  font-weight: 600;
  width: 100%;
  text-align: right;
}

.categories .category img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.categories .cat-col-1 {
  background-color: #ecfae9;
}

.categories .cat-col-2 {
  background-color: #f7e7fd;
}

.categories .cat-col-3 {
  background-color: #e0eff5;
}

.categories .cat-col-4 {
  background-color: #fdede7;
}

.categories .cat-col-5 {
  background-color: #fffae0;
}

.categories .cat-col-6 {
  background-color: #e9f2fa;
}

.categories .cat-col-7 {
  background-color: #e9f2fa;
}

.categories .cat-col-8 {
  background-color: #fffae0;
}

.categories .cat-col-9 {
  background-color: #ecfae9;
}

.categories .cat-col-10 {
  background-color: #f7e7fd;
}

.categories .cat-col-11 {
  background-color: #e0eff5;
}

.categories .cat-col-12 {
  background-color: #fdede7;
}

.categories .category {
  scale: 1;
  transition: 0.5s;
  cursor: pointer;
}
.categories .category:hover {
  scale: 1.05;
  filter: grayscale(1);
}

/* End Categories Section */

/* Start Partners Section */

.partners {
  position: relative;
  margin-top: 260px;
  margin-bottom: 176px;
}

.partners > img.line {
  position: absolute;
  bottom: -57%;
  left: 0;
  transform: rotate(173deg);
}

.partners .header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.partners .header .buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.partners .header .buttons button {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #1eac9e;
  border: none;
  outline: none;
  font-size: 20px;
  opacity: 1;
  transition: 0.3s;
}
.partners .header .buttons button:hover {
  opacity: 0.8;
}

.partners .header h1 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
}

.partners .partner {
  width: 100%;
  height: 167px;
  border-radius: 16px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9d9d9;
  margin-bottom: 20px;
  scale: 1;
  transition: 0.3s;
}

.partners .partner:hover {
  scale: 1.05;
}

.partners .partner img {
  width: 85px;
  height: 85px;
  object-fit: contain;
  margin-bottom: 10px;
}

.partners .partner h4 {
  font-size: 18px;
  font-weight: 500;
  color: #757575;
}

/* End Partners Section */

/* Start rates Section*/

.rates {
  margin-top: 335px;
  margin-bottom: 290px;
  position: relative;
}

.rates > img {
  position: absolute;
  bottom: -55%;
  z-index: -1;
  width: 100%;
}

.rates .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 53px;
  width: 87%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.rates .header img:nth-child(1) {
  position: absolute;
  left: 0;
}

.rates .header h5 {
  font-size: 18px;
  color: #757575;
  font-weight: 500;
}

.rates .header h1 {
  font-size: 72px;
  font-weight: 700;
  color: #000;
  width: 67%;
  text-align: center;
}

.rates .header img:nth-child(4) {
  position: absolute;
  right: 0;
  bottom: -75%;
  z-index: -1;
}

.rates .slider {
  margin-top: 30px;
  position: relative;
}

.rates .overlay-left {
  position: absolute;
  left: 0%;
  top: 28%;
  z-index: 2;
  height: 52%;
  width: 40%;
  background-color: #fff;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
  filter: blur(1px);
}

.rates .overlay-right {
  position: absolute;
  right: 0;
  left: inherit;
  top: 28%;
  height: 52%;
  filter: blur(1px);
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(
    270deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-linear-gradient(
    270deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
  z-index: 2;
  width: 40%;
}

.rates .slider .rates-slider .slide {
  width: 350px;
  cursor: grab;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-right: 10px;
  margin-left: 10px;
}

.rates .slider .rates-slider .slide .rate {
  width: 100%;
  min-height: 250px;
  border: 2px solid transparent;
  position: relative;
  padding: 15px;
  border-radius: 10px;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.rates .slider .rates-slider .slide.slick-current .rate {
  border: 2px solid #1eac9e;
}

.rates .slider .rates-slider .slide .rate > img {
  position: absolute;
  top: -56px;
  left: -52px;
  opacity: 0;
  transition: 0.3s;
}

.rates .slider .rates-slider .slide.slick-current .rate > img {
  opacity: 1;
}

.rates .slider .rates-slider .slide .rate p {
  font-size: 18px;
  font-weight: 500;
  color: #757575;
  text-align: right;
  direction: rtl;
}

.rates .slider .rates-slider .slide .rate .info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  direction: ltr;
  text-align: right;
  justify-content: flex-end;
}

.rates .slider .rates-slider .slide .rate .info div h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
}

.rates .slider .rates-slider .slide .rate .info div h4 {
  font-size: 18px;
  font-weight: 500;
  color: #757575;
  text-align: right;
  direction: rtl;
}

.rates .slider .rates-slider .slide .rate .info img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.rates .buttons {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.rates .buttons button {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #1eac9e;
  border: none;
  outline: none;
  font-size: 20px;
  transition: 0.3s;
  opacity: 1;
}
.rates .buttons button:hover {
  opacity: 0.8;
}

/* End rates Section*/

/* Start NeedChoose Section */

.need-choose {
  background-color: #1eac9e;
  z-index: 3;
  position: relative;
}

.need-choose .line {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 200px;
}

.need-choose .back {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: -1;
}

.need-choose .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
  margin-bottom: 59px;
}

.need-choose .header h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  width: 50%;
  text-align: center;
}

.need-choose .header h2 {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin-top: 34px;
  margin-bottom: 17px;
}

.need-choose .phones {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  z-index: 3;
  position: relative;
  justify-content: center;
  margin-top: 46px;
}

.need-choose .phones .phone1 {
  position: relative;
}

.need-choose .phones .phone1 img:nth-child(1) {
  width: 128px;
  height: 128px;
  object-fit: contain;
  position: absolute;
  top: -50px;
  left: -10px;
}

.need-choose .phones .phone1 img:nth-child(2) {
  width: 300px;
  object-fit: contain;
}

.need-choose .phones .phone2 img:nth-child(1) {
  width: 306px;
  object-fit: contain;
  height: 100%;
}

.need-choose .phones .phone3 {
  position: relative;
}

.need-choose .phones .phone3 img:nth-child(1) {
  width: 128px;
  height: 128px;
  object-fit: contain;
  position: absolute;
  top: -32%;
  right: -30%;
  z-index: -1;
}

.need-choose .phones .phone3 img:nth-child(2) {
  width: 300px;
  object-fit: contain;
}

/* End NeedChoose Section */

/* Start Faqs Section */

.faqs {
  position: relative;
  padding-top: 70px;
  padding-bottom: 250px;
}

.faqs .line {
  position: absolute;
  top: 0%;
  left: 0;
  width: 240px;
  transform: rotateY(180deg);
}

.faqs .row > .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
}

.faqs .row > .header h1 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
}

.faqs .faq .header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 19px;
  border-radius: 16px;
  height: 50px;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
  transition: 0.3s;
  scale: 1;
  padding-top: 0;
}

.faqs .faq .header:hover {
  scale: 1.01;
}

.faqs .faq .header i {
  font-size: 18px;
}

.faqs .faq .header div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.faqs .faq .header div h2 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.faqs .faq .description {
  padding: 28px;
  text-align: right;
  font-size: 20px;
  color: #757575;
  direction: rtl;
  display: none;
  padding-top: 0;
}

.faqs .faq.active {
  border: 1px solid #1eac9e;
  border-radius: 12px;
}

.faqs .faq .header i {
  font-size: 18px;
  color: #1eac9e;
  transition: 0.3s;
  transform: rotate(0deg);
}

.faqs .faq .header i.active {
  transform: rotate(180deg);
}
.faqs .faq-image {
  width: 360px;
  height: 195px;
  object-fit: contain;
  position: absolute;
  right: 0;
  bottom: 0;
}

.faqs .brokenline {
  width: 100%;
  position: absolute;
  bottom: 0;
}

/* Start Tags Section */

.tags {
  position: relative;
}

.tags .tags-slider {
  margin-bottom: 355px;
}

.tags .line {
  position: absolute;
  z-index: -1;
  bottom: -20%;
  width: 100%;
}

.tags .header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 120px;
  margin-bottom: 90px;
}

.tags .header .stars-images-1 img:nth-child(1) {
  margin-top: -11px;
  width: 24px;
}

.tags .header .stars-images-1 img:nth-child(2) {
  margin-top: -7px;
  width: 36px;
}

.tags .header h1 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
}

.tags .header .stars-images-2 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.tags .header .stars-images-2 img:nth-child(1) {
  margin-top: -55px;
  width: 25px;
}

.tags .header .stars-images-2 img:nth-child(2) {
  margin-top: -7px;
  width: 36px;
}

.tags .tag {
  width: 100%;
  height: 133px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  margin-bottom: 30px;
  scale: 1;
  transition: 0.3s;
  background-color: #fff;
}

.tags .tag:hover {
  scale: 1.05;
}

.tags .row {
  flex-direction: row;
  display: flex !important
;
}

.tags .tag img {
  width: 85px;
  height: 85px;
  object-fit: contain;
}

.tags .col-12 > img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tags .col-12 .buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 12px;
}

.tags .col-12 .buttons button {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #1eac9e;
  border: none;
  outline: none;
  font-size: 20px;
  transition: 0.3s;
  opacity: 1;
}

.tags .col-12 .buttons button:hover {
  opacity: 0.8;
}

.tags .col-12 .buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 12px;
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
}

/* End Faqs Section */

/* Start Last News Section */

.last-news {
  position: relative;
  padding-top: 70px;
  padding-bottom: 250px;
}

.last-news .row > h1 {
  text-align: center;
  margin-top: 120px;
  margin-bottom: 80px;
  font-size: 48px;
  font-weight: 700;
  color: #000;
}

.last-news .new {
  margin-bottom: 35px;
}

.last-news .new img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 10px;
  scale: 1;
  transition: 0.3s;
}

.last-news .new img:hover {
  scale: 1.05;
  cursor: pointer;
}

.last-news .new .text {
  text-align: right;
}

.last-news .new .text .user-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  justify-content: flex-end;
}

.last-news .new .text .user-info span {
  font-size: 16px;
  color: #757575;
  font-weight: 500;
}

.last-news .new .text .user-info img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin: 0;
}

.last-news .new .text h1 {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
  color: #000;
  transition: 0.3s;
}

.last-news .new .text h1:hover {
  color: #0f9c8e;
}

.last-news .new .text p {
  font-size: 16px;
  color: #757575;
  font-weight: 500;
  width: 100%;
}

.last-news .news-paper {
  width: 360px;
  height: 195px;
  object-fit: contain;
  position: absolute;
  right: 0;
  bottom: 0;
}

.last-news .broken-line {
  width: 100%;
  position: absolute;
  bottom: 0;
}

/* End Last News Section */

/* Start Footer Section */

footer {
  background-color: #fcfcfc;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

footer > img:nth-child(1) {
  position: absolute;
  width: 50%;
  left: 0;
  bottom: 0;
}

footer > img:nth-child(2) {
  position: absolute;
  width: 50%;
  right: 0;
  bottom: 0;
}

footer .footer-content {
  position: relative;
  z-index: 2;
  min-height: 250px;
}

footer .footer-content h2 {
  font-size: 16px;
  font-weight: 700;
  color: #757575;
  margin-bottom: 20px;
  direction: rtl;
}

footer .footer-content .contact-info {
  direction: rtl;
  font-size: 16px;
  font-weight: 500;
  color: #757575;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

footer .footer-content .contact-info a {
  color: #757575;
  transition: 0.3s;
  display: flex;
  flex-direction: row;
  gap: 5px;
}

footer .footer-content .contact-info a div {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

footer .footer-content .contact-info a:hover {
  color: #1eac9e;
}

footer.en .footer-content .contact-info a div {
  display: flex;
  flex-direction: row;
  gap: 5px;
  direction: rtl;
}

footer .footer-content .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 90px;
}

footer .footer-content .socials a {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #757575;
  border-radius: 50%;
  transition: 0.3s;
}

footer .footer-content .socials a:hover {
  background-color: #1eac9e;
}

footer .footer-content ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  list-style: disc !important;
  padding-right: 20px !important;
}

footer .footer-content ul li {
  direction: rtl;
}

footer .footer-content ul li a {
  font-size: 16px;
  color: #000;
  transition: 0.3s;
}

footer .footer-content ul li a:hover {
  color: #1eac9e;
}

footer .footer-content .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

footer .footer-content .logo img {
  object-fit: contain;
  width: 158px;
  height: 90px;
}

footer .footer-content p {
  text-align: right;
  direction: rtl;
  margin-bottom: 35px;
  font-size: 16px;
  color: #000;
}

footer .footer-content .links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin-left: -11px;
}
/* End Footer Section */

/* Start CopyRight Section */

.copy-right {
  min-height: 64px;
  background-color: #1eac9e;
}

.copy-right h2 {
  text-align: center;
  height: 64px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  margin: 0;
}

/* End CopyRight Section */

.slick-slide {
  margin-right: 21px !important;
}

@media (max-width: 950px) {
  nav .nav-content .nav-elements ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: #000;
    padding: 0 !important;
    margin: 0;
    height: 100%;
    justify-content: center;
    gap: 36px;
  }

  .slick-slide {
    margin-right: 0 !important;
  }

  nav .nav-elements {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 50;
    display: none;
  }

  .hero > img.line {
    position: absolute;
    right: 0;
    top: 30px;
    z-index: -1;
    width: 151px;
    height: 139px;
  }

  .hero .row {
    flex-direction: column-reverse;
  }

  .hero .text h1 {
    font-size: 32px;
  }

  .hero .text {
    margin-top: 110px;
  }

  .hero .text p {
    font-size: 16px;
  }

  .hero .text h1 {
    margin-bottom: 15px;
  }

  .links.google-apple img {
    display: flex;
    flex-direction: row;
    width: 150px;
    height: 46px;
  }
  .hero .text h5 {
    font-size: 16px;
    text-align: center;
  }

  .hero .image img {
    width: 100%;
    object-fit: contain;
    height: 642px;
    margin-top: 0;
  }

  .hero .text > img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    position: absolute;
    bottom: 4%;
    left: 0;
  }

  .why-us .image img:nth-child(1) {
    width: 100%;
    object-fit: contain;
    height: 344px;
  }

  .why-us .image {
    position: relative;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .why-us .rev-row {
    flex-direction: column-reverse;
  }

  .why-us .row:not(.row.rev-row) {
    flex-direction: column;
  }

  .why-us .text {
    margin-bottom: 0;
    height: 265px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: right;
    direction: rtl;
  }

  .why-us .text h1 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    width: 100%;
  }

  .why-us .text p {
    font-size: 16px;
    color: #757575;
    font-weight: 500;
    width: 100%;
    text-align: center;
  }

  .ad-whyus .phones img:nth-child(1) {
    width: 223px;
    height: 400px;
  }

  .ad-whyus .phones img:nth-child(2) {
    width: 234px;
    height: 400px;
  }

  .ad-whyus .row {
    flex-direction: column-reverse !important;
  }

  .ad-whyus .phones {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 399px;
  }

  .ad-whyus .phones img:nth-child(1) {
    position: absolute;
    top: inherit;
    left: 0;

    object-fit: contain;
    bottom: -1px;
  }

  .ad-whyus .phones img:nth-child(2) {
    position: absolute;
    left: 113px;
    top: inherit;
    object-fit: contain;
    bottom: -24px;
  }

  .why-us > img.line {
    position: absolute;
    bottom: 16%;
    left: -4%;
    transform: rotate(188deg);
  }

  .categories .header h1 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
  }

  .categories .header p {
    font-size: 16px;
    color: #757575;
    font-weight: 500;
  }

  .categories .category h2 {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    width: 100%;
    text-align: right;
  }

  .categories .category img {
    width: 95%;
    height: 140px;
    object-fit: contain;
    position: relative;
    left: -12px;
  }

  .categories > img.line {
    position: absolute;
    bottom: -14%;
    left: 0;
    transform: rotate(173deg);
  }

  .partners .header h1 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    text-align: center;
    width: 100%;
  }

  .why-us .header h1 {
    font-size: 40px;
}


  .partners .header .buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: -8%;
    left: 50%;
    transform: translateX(-50%);
  }

  .partners > img.line {
    position: absolute;
    bottom: -25%;
    left: 0;
    transform: rotate(173deg);
    width: 207px;
  }

  .rates .header img:nth-child(1) {
    display: none;
  }

  .rates .header {
    width: 100%;
  }

  .rates .header img:nth-child(4) {
    display: none;
  }
  .rates .header h1 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    width: 100%;
  }

  .need-choose .header h1 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-top: 90px;
    width: 100%;
  }

  .need-choose .phones .phone2 img:nth-child(1) {
    width: 240px;
    object-fit: contain;
    height: 100%;
  }

  .need-choose .header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
    margin-bottom: 141px;
  }

  .need-choose .phones .phone1 img:nth-child(2) {
    width: 197px;
    object-fit: contain;
  }

  .need-choose .header h2 {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 17px;
  }

  .need-choose .phones .phone3 img:nth-child(2) {
    width: 197px;
    object-fit: contain;
  }
  .need-choose .phones .phone1 img:nth-child(1) {
    width: 128px;
    height: 128px;
    object-fit: contain;
    position: absolute;
    top: -50px;
    z-index: 20;
    left: 10%;
    top: -44%;
  }

  .rates .header {
    margin-bottom: 31px;
  }

  .need-choose .phones {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    z-index: 3;
    position: relative;
    justify-content: center;
    margin-top: 44px;
    position: relative;
  }

  .need-choose .phones .phone1 {
    position: relative;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .need-choose .phones .phone2 {
    z-index: 1;
  }

  .need-choose .phones .phone3 {
    position: relative;
    position: absolute;
    right: 0;
  }

  .need-choose .phones .phone1 img:nth-child(1) {
    width: 128px;
    height: 128px;
    object-fit: contain;
    position: absolute;
    top: -50px;
    z-index: 20;
    left: 24%;
    top: -100%;
  }
  .need-choose .phones .phone3 img:nth-child(1) {
    width: 140px;
    height: 165px;
    object-fit: contain;
    position: absolute;
    top: -120%;
    right: 2%;
  }

  .faqs .line {
    position: absolute;
    top: 0%;
    left: 0;
    width: 149px;
    transform: rotateY(180deg);
  }

  .faqs .row > .header {
    margin-top: 69px;
  }

  .why-us.en .text:not(.ad-whyus .text) {
    margin-bottom: 40px;
    height: 250px;
  }

  .faqs .row > .header h1 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
  }

  .faqs .faq .header div h2 {
    font-size: 18px;
    text-align: right;
  }

  .tags .line {
    display: none;
  }

  .faqs .faq .description {
    padding: 28px;
    text-align: right;
    font-size: 16px;
    color: #757575;
    direction: rtl;
    display: none;
    padding-top: 0;
  }

  .last-news .new {
    margin-bottom: 35px;
  }

  .last-news {
    padding-top: 0;
  }

  .faqs .faq-image {
    width: 280px;
    height: 166px;
    object-fit: contain;
    position: absolute;
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
  }

  .tags .header .stars-images-1 img:nth-child(2) {
    margin-top: -7px;
    width: 22px;
  }

  .tags .header .stars-images-1 img:nth-child(1) {
    margin-top: -11px;
    width: 8px;
  }

  .tags .header h1 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    text-align: center;
  }

  .tags .header .stars-images-2 img:nth-child(2) {
    margin-top: -7px;
    width: 17px;
  }

  .tags .header .stars-images-2 img:nth-child(1) {
    margin-top: -55px;
    width: 11px;
  }

  .tags .col-12 > img {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    width: 248px;
  }

  .tags {
    position: relative;
    padding-bottom: 265px;
  }

  .tags .col-12 .buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 12px;
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
  }

  .last-news .row > h1 {
    font-size: 40px;
  }

  .links.google-apple {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    justify-content: center;
    width: 100%;
    margin-bottom: 27px;
  }

  .last-news .new .text h1 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
  }

  .last-news .new .text p {
    font-size: 14px;
  }

  .last-news .new .text .user-info span {
    font-size: 14px;
  }

  .last-news .news-paper {
    width: 100%;
    height: 205px;
    object-fit: contain;
    position: absolute;
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
  }

  footer .row {
    flex-direction: column-reverse;
  }

  footer .footer-content {
    position: relative;
    z-index: 2;
    min-height: 217px;
  }

  .rates .container {
    padding: 0;
  }

  .rates {
    margin-top: 335px;
    margin-bottom: 90px;
    position: relative;
  }

  .rates .slider .rates-slider .slide .rate {
    width: 83%;
    margin-right: 0;
    margin-left: 0;
    z-index: 165165165;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .tags .row {
    flex-direction: row;
    display: flex !important;
  }

  .rates .overlay-right {
    right: 0;
    display: none;
  }

  .rates .overlay-left {
    display: none;
  }

  nav .lang-dropdown {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  nav .nav-content .nav-elements ul li a {
    color: #000;
    transition: 0.3s;
  }

  nav .close-nav {
    display: block;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    outline: none;
    border: none;
    font-size: 26px;
  }

  nav .open-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    color: #fff;
    background-color: transparent;
    outline: none;
    border: none;
    font-size: 18px;
  }
  .rates > img {
    position: absolute;
    bottom: -16%;
    z-index: -1;
    width: 100%;
  }

  .whatsapp-icon {
    top: 85%;
  }
}

/* direction english */

nav.en .nav-content {
  direction: rtl;
}

.hero.en {
  direction: rtl;
}

.hero.en .text {
  text-align: left;
}

.hero.en .text p {
  direction: ltr;
}

.hero.en .text h5 {
  direction: ltr;
}

.hero.en > img.line {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 200px;
  right: inherit;
  transform: rotateY(180deg);
}

.why-us.en .row {
  direction: rtl;
}

.why-us.en .text:not(.ad-whyus .text) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  direction: ltr;
}

.ad-whyus.en .text {
  direction: ltr;
  text-align: left;
}

.categories.en .category {
  direction: rtl;
  text-align: left;
}

.categories.en .category h2 {
  text-align: left;
}

.categories.en .header {
  direction: rtl;
}

.categories.en .header p {
  direction: ltr;
}

.partners.en .header {
  direction: rtl;
}

.partners.en .buttons {
  direction: ltr;
}

.rates.en .slider .rates-slider .slide .rate p {
  text-align: right;
  direction: ltr;
  text-align: left;
}

.rates.en .slider .rates-slider .slide .rate .info {
  direction: rtl;
  text-align: left;
}

.faqs.en .faq .header {
  direction: rtl;
}

.faqs.en .faq .description {
  text-align: left;
  direction: ltr;
}
.last-news.en .new .text {
  text-align: left;
  direction: rtl;
}

.last-news.en .new .text p {
  direction: ltr;
}

.categories.en .row {
  direction: rtl;
}

.categories.en .category img {
  transform: rotateY(180deg);
}

footer.en {
  direction: rtl;
  text-align: left;
}

footer.en .footer-content .contact-info a {
  direction: ltr;
}

footer.en .footer-content h2 {
  direction: ltr;
}

footer.en .footer-content ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 20px !important;
  direction: rtl;
}

footer.en .footer-content ul li {
  direction: ltr;
}

footer.en .footer-content p {
  text-align: left;
  direction: ltr;
}

.faqs.en .faq .header div h2 {
  font-size: 20px;
  text-align: left;
  direction: ltr;
}
