@font-face {
  font-family: "DINNextLTArabic-Bold";
  src: url(../webfonts/DINNextLTArabic-Bold.ttf);
}
@font-face {
  font-family: "DINNextLTArabic-Light";
  src: url(../webfonts/DINNextLTArabic-Light.ttf);
}


@font-face {
  font-family: "DINNextLTArabic-Regular";
  src: url(../webfonts/DINNextLTArabic-Regular.ttf);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "DINNextLTArabic-Regular";
}

html[lang="en-US"] body {
  font-family: "Poppins", sans-serif;
}

:root {
  --c-s: #4e358c;
  --c-s1: #db86fd;
}

a {
  text-decoration: none;
  transition: all 300ms ease-in-out;
  color: var(--cs-2);
}

p {
  color: #34383a;
  line-height: 1.8;
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

figure {
  padding: 0;
  margin: 0;
}

.vw-5 {
  padding-block: 5vw;
}

.btn-site {
  font-size: 17px;
  color: #1e1e1e;
  width: 150px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 0;
  transition: 300ms;
  outline: none;
  border: 1px solid var(--c-s);
  padding-block-end: 5px;
  border-radius: 50px;
}

.main-slider .btn-site {
  color: #fff;
  border-color: #fff;
  margin: auto;
}

.btn-site:hover {
  background-color: var(--c-s) !important;
  color: #fff;
  border-color: transparent;
}

.title-section {
  color: #02253b;
  font-family: "DINNextLTArabic-Bold";
  font-size: 36px;
  border-inline-start: 2px solid #000;
  padding: 0px 11px;
  display: flex;
  height: 60px;
  margin-block-end: 15px;
}

.head-section h2 {
  color: #02253b;
  font-family: "DINNextLTArabic-Bold";
  font-size: 35px;
  position: relative;
  margin-block: 50px 70px;
}

.head-section h2::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
  width: 2px;
  height: 80px;
  background: var(--c-s1);
  margin: auto;
}

.card-site a.image-card {
  height: 250px;
  display: block;
  overflow: hidden;
  position: relative;
}

.card-site a.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 300ms;
}

.card-site .box-caption {
  background: #fff;
  padding: 20px 30px;
}

.card-site .box-caption > a {
  font-size: 20px;
  color: #282828;
  margin-block-end: 15px;
  display: block;
}

.card-site .info-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block: 15px 10px;
}

.card-site .info-more .user a {
  margin-inline-start: 7px;
}

.card-site .info-more .user a:hover {
  color: var(--c-s1);
}

.card-site .box-caption p {
  margin: 0;
}

.card-site a.image-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #db86fd6b;
  opacity: 0;
  transition: 300ms;
  z-index: 9;
}

.card-site:hover a.image-card::before {
  opacity: 1;
}

.card-site:hover a.image-card img {
  transform: scale(1.1) rotate(2deg);
}

.card-site:hover .box-caption > a {
  color: var(--c-s);
}

#btn-mobile,
.logo-container-mobile,
.overlay {
  display: none;
}

/* Start Header */

#masthead {
  background: #fff;
}

#masthead .logo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 16px;
  position: relative;
}

#masthead .left-navbar {
  display: flex;
  align-items: center;
  gap: 25px;
}

#masthead .left-navbar .left {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

#primary-menu {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 37px;
  align-items: center;
}

#primary-menu li a {
  position: relative;
  display: block;
  padding-block-end: 5px;
  font-size: 17px;
  color: #575757;

}

#primary-menu li.current-menu-item a {
  color: var(--c-s);
  font-family: 'DINNextLTArabic-Bold';

}

#primary-menu li a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  background-color: var(--c-s);
  bottom: -8px;
  transition: 300ms;
}

#primary-menu li.current-menu-item a::before {
  width: 100%;
}

#primary-menu a:hover::before {
  width: 100%;
}

#btn-search {
  cursor: pointer;
}

#forms-search {
  position: absolute;
  top: 40px;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
  left: 0;
  z-index: 99;
}

html[lang="en-US"] #forms-search {
  left: unset;
  right: 0;
}

#forms-search.active {
  top: 25px;
  transform: translateY(40px);
  opacity: 1;
  visibility: visible;
}

#masthead form.search-form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--c-s1);
  gap: 10px;
}

#masthead input.search-field {
  background-color: transparent;
  border: 1px solid #fff;
  outline: none;
  padding: 4px 14px 7px;
  font-size: 15px;
  height: 33px;
}

#masthead input.search-submit {
  padding: 3px 20px 30px;
  border: none;
  font-size: 15px;
  height: 30px;
  display: block;
}

input.search-field::placeholder {
  color: #000;
}

.lang ul a {
  text-transform: uppercase;
  width: 39px;
  height: 39px;
  background: var(--c-s);
  color: #fff;
  display: grid;
  place-content: center;
  border-radius: 5px;
  font-size: 16px;
  border: 1px solid transparent;
}

.lang ul a:hover {
  color: #000;
  background-color: transparent;
  border-color: var(--c-s);
}
/* End Header */

/* Start Slider */
.main-slider .item {
  background-size: cover;
  min-height: 850px;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 3;
}

.main-slider .item .h2 {
  font-size: 96px;
  font-family: "DINNextLTArabic-Bold";
  position: relative;
  margin-block-end: 50px;
}

.main-slider .item .h2::before {
  content: "";
  position: absolute;
  bottom: -20px;
  width: 60px;
  height: 1px;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
}

.main-slider .item .h2 h5 {
  font-size: 40px;
  font-family: "DINNextLTArabic-Light";
  margin-block-start: 10px;
}

.main-slider .item p {
  margin: 0 auto 35px;
  width: 70%;
  font-size: 21px;
  color: #fff;
}
/* End Slider */

/* Start about */
.caption .content {
  color: #34383a;
  font-size: 17px;
  line-height: 1.8;
}

.about .caption {
  padding-inline-end: 50px;
}

.about .boxes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-start: 20px;
}

.about .boxes .box h2 {
  font-size: 25px;
  font-family: "DINNextLTArabic-Bold";
  color: var(--c-s);
  margin-block-end: 20px;
}

.about .boxes .box .content {
    /* width: 80%; */
}

.image-site figure {
  height: 450px;
  position: relative;
}

.image-site figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-site figure::before,
.image-site figure::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  z-index: -1;
}

.image-site figure::before {
  inset-block-start: -20px;
  inset-inline-start: -20px;
  border-inline-start: 2px solid var(--c-s1);
  border-block-start: 2px solid var(--c-s1);
}

.image-site figure::after {
  background: var(--c-s);
  inset-block-end: -20px;
  inset-inline-end: -20px;
}

/* Start medical */
.section-site {
  background: #f4f4f4;
  clip-path: polygon(100% 100%, 0% 100%, 0% 10%, 100% 0%);
  padding-block: 170px 170px;
}

.medical.section-site .image-site figure::before {
  inset-inline-end: -20px;
  inset-inline-start: unset;
  border-inline-end: 2px solid var(--c-s1);
  border-inline-start: unset;
}

.medical.section-site .image-site figure::after {
  background: var(--c-s);
  inset-block-end: -20px;
  inset-inline-end: unset;
  inset-inline-start: -20px;
}

.section-site .caption {
  padding-inline-start: 70px;
}

.section-site .caption .title-section {
  border-color: var(--c-s1);
  padding: 0 30px;
  margin-block-end: 40px;
}

/* Start propery */
.propery.section-site {
  background: linear-gradient(-130.05deg, #4e358c -1.74%, #2e1c5c 93.02%);
  margin-block-start: -80px;
  clip-path: polygon(100% 90%, 0% 100%, 0% 10%, 100% 0%);
}
.propery.section-site .image-site figure::after {
  background: var(--c-s1);
}

.propery.section-site .content,
.propery.section-site .title-section {
  color: #fff;
}

.propery.section-site a.btn-site {
  color: #fff;
  border-color: #fff;
}

.propery.section-site a.btn-site:hover {
  background: #fff !important;
  color: var(--c-s);
}
.propery.section-site .caption {
  padding-inline-start: unset;
  padding-inline-end: 70px;
}

/* Start news */
.news {
  background: #fafafa;
  margin-block-start: -80px;
  padding-block-start: 160px;
}

.news .btn-site {
  margin: 50px auto;
}

/* End news */
/* Start client */
body:is(.home) .client {
  padding-block: 180px;
  margin-block-start: -70px;
  background: linear-gradient(-130.05deg, #4e358c -1.74%, #2e1c5c 93.02%);
  clip-path: polygon(100% 90%, 0% 100%, 0% 10%, 100% 0%);
}

.client .head-section h2 {
  color: #fff;
}

.client .head-section h2::before {
  background-color: #fff;
}

.slider-client {
  position: relative;
}

.slider-client figure {
  border-radius: 15px;
  aspect-ratio: 16 / 9;
  min-height: 101px;
}

.slider-client figure img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.client .box {
  background: #ffffff0d;
  color: #fff;
  text-align: center;
  padding: 10px;
  display: grid;
  place-content: center;
}

.client .box h5 {
  font-size: 16px;
  color: #e6e6e6;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next,
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  width: 45px;
  height: 45px;
  background-color: #fff;
  border-radius: 50px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: -70px;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: -70px;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 16px;
  font-family: "FontAwesome";
  color: var(--c-s);
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 13px;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  background-image: url(../images/arrow-l.svg);
  background-repeat: no-repeat;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  background-image: url(../images/arrow-r.svg);
}

/* End  client */
/* Start Contact */

body:is(.home) .contact {
  margin-block-start: -70px;
  padding-block-start: 150px;
}

.contact {
  background: #fafafa;
}

.form-control {
  background: #fff;
  border: 0;
  border-radius: 5px;
  direction: rtl !important;
  padding: 15px 25px;
  position: relative;
  border-bottom: 2px solid transparent;
  font-size: 16px;
  z-index: 9;
  border: 2px solid transparent;
  color: #484949;
}

html[lang="en-US"] .form-control {
  direction: ltr !important;
}

.form-control:focus {
  box-shadow: none;
  border: 2px solid var(--c-s1);
  background: #f3f4f4;
  outline: none;
  color: #484949;
}

.wpcf7-submit.btn-site {
  margin: 40px auto 0;
}
/* End Contact */

/* Start Footer */
.map {
  position: relative;
  height: 400px;
}

.map iframe {
  width: 100%;
  height: 100%;
}

.socail-m {
  display: flex;
  gap: 15px;
  margin-inline-start: -170px;
}

footer {
  background: linear-gradient(130.05deg, #4e358c -1.74%, #2e1c5c 93.02%);
  min-height: 420px;
  color: #fff;
  clip-path: polygon(100% 100%, 0% 100%, 0% 10%, 100% 0%);
  margin-block-start: -50px;
}

footer .top {
  padding-block: 130px 50px;
  font-size: 16px;
}

footer .widget-title {
  font-size: 19px;
  padding-block-end: 25px;
  font-family: "DINNextLTArabic-Bold";
  color: var(--c-s1);
}

footer .top a {
  color: #ffffff;
}

footer .top .menu a:hover {
    color: var(--c-s1);
    padding-inline-start: 3px;
}

footer .top ul li {
  gap: 15px;
  margin-block-end: 14px;
}

footer ul.info li {
  display: flex;
  color: #fff;
  gap: 20px;
}

footer ul.info li svg {
  width: 15px;
  height: 20px;
  display: block;
  margin-block-start: 5px;
}

.textwidget p {
  color: #fff;
  width: 65%;
  margin-block-start: 20px;
  font-size: 15px;
  text-align: justify;
}

footer .copyright {
  border-top: 1px solid #ffffff3d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 25px;
}
/* End Footer */

/************************************************************************** Start Stype Pages  **************************************************************************/
.entry-header {
  min-height: 120px;
  background: var(--c-s);
  display: grid;
  place-content: center;
  margin-block-end: 50px;
  color: #fff;
}

.entry-header h1 {
  font-size: 25px;
}

.entry-content {
  min-height: 300px;
  padding-block-end: 3vh;
  text-align: center;
}

.post-thumbnail {
  max-width: 800px;
  aspect-ratio: 3 / 2;
  margin-inline: auto;
  margin-block-end: 32px;
}

.post-thumbnail
  img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category .box-caption,
.page-template-template-service .box-caption,
.author-site .box-caption {
  background: #f7f7f7;
}

article#post-102 {
  background: #fafafa;
}
/************************************************************************** End Stype Pages  **************************************************************************/
/* Start Media */

@media screen and (min-width: 992px) and (max-width: 1280px) {
  .widget_media_image a {
    width: 230px;
    display: block;
  }

  .widget_media_image a img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
  }
}

@media (max-width: 992px) {
  #btn-mobile,
  .logo-container-mobile,
  .overlay {
    display: block;
  }

  .overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0;
    transition: 0.3s;
    visibility: hidden;
    z-index: 99;
  }

  .overlay.active {
    opacity: 0.5;
    visibility: visible;
  }

  #btn-mobile {
    cursor: pointer;
    color: var(--c-s1);
    font-size: 27px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-container-mobile {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  #primary-menu {
    margin-block-start: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-inline-start: 9px;
    align-items: unset;
  }

  #navbar-site {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    background-color: #fff;
    padding-block-start: 15px;
    padding-inline: 11px;
    z-index: 999;
    transform: translateX(350px);
    transition: 300ms;
    display: block;
  }

  #navbar-site.active {
    transform: none;
    opacity: 1;
  }

  #button-close {
    border: 0;
    width: 30px;
    height: 30px;
    background: var(--c-s);
    color: #fff;
    display: grid;
    place-content: center;
    cursor: pointer;
  }

  #masthead .left-navbar {
    display: block;
  }
  #masthead .left-navbar .left {
    gap: 8px;
  }

  #masthead .left-navbar .left .search {
    display: none;
  }
  .lang ul a {
    height: 25px;
    width: 25px;
    font-size: 14px;
    line-height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #primary-menu li.current-menu-item a::before {
    width: 10%;
  }

  #primary-menu a:hover::before {
    width: 10%;
  }
  #masthead .logo-container{
        padding-block: 8px;
  }
  #masthead .logo-container a.custom-logo-link {
    height: 50px;
}

#masthead .logo-container a.custom-logo-link img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

  .main-slider .item .h2 {
    font-size: 45px;
  }

  .main-slider .item .h2 h5 {
    font-size: 20px;
  }

  .main-slider .item p {
    width: 90%;
    font-size: 17px;
  }

  .main-slider .item {
    min-height: 450px;
  }
  .title-section {
    font-size: 25px;
    height: 40px;
  }

.section-site .caption .title-section{
  padding: 0 10px;
          margin-block-end: 25px;
}
  .about.vw-5 {
    padding-block: 10vw;
    padding-block-end: 10px;
  }

  .about .boxes .box h2 {
    font-size: 20px;
  }

  .image-site figure::before,
  .image-site figure::after {
    display: none;
  }
  .about .boxes {
    display: block;
    margin-block-start: 30px;
  }

  .about .boxes .box {
    margin-block-end: 30px;
  }

  .about .boxes .box .content {
    width: 100%;
  }
  .image-site figure {
    height: 250px;
  }
  .section-site {
    clip-path: none;
    padding-block: 40px;
  }

  .propery.section-site {
    clip-path: none;
    margin-block-start: 0px;
    padding-block-end: 60px;
  }

  .section-site .caption {
    padding-inline-start: 0;
    margin-block-start: 35px;
  }
  .about .caption {
    padding-inline-end: 0;
  }

  .about .row.align-items-center {
    flex-flow: column-reverse;
  }

  .about .image-site {
    margin-block-end: 30px;
  }
  .propery .image-site {
    margin-block-start: 50px;
  }

  .propery.section-site .caption {
    padding-inline-end: unset;
    margin-block-start: 20px;
  }
  .news {
    margin-block-start: 0;
    padding-block-start: 50px;
    padding-block-end: 50px;
  }

  .head-section h2::before {
    height: 50px;
    top: -60px;
  }

  .head-section h2 {
    margin-block-end: 40px;
    font-size: 30px;
  }
  .card-site {
    margin-block-end: 30px;
  }
  .client .buttons {
    display: none;
}

.entry-header {
    min-height: 80px;
}

  .news .btn-site {
    margin: 10px auto 0;
  }
  body:is(.home) .client {
    clip-path: none;
    margin-block-start: 0;
    padding-block: 60px;
  }
  body:is(.home) .contact {
    margin-block-start: 0;
    padding-block-start: 50px;
  }
  footer {
    clip-path: none;
    margin-block-start: 0;
  }

  footer .top {
    padding-block: 50px;
    text-align: center;
  }
  .textwidget p {
          font-size: 13px;
    width: 100%;
    text-align: center;
  }

  footer .widget-title {
    margin-block-start: 10px;
  }

  footer ul.info li {
    display: block;
  }

  footer ul.info li svg {
    margin: auto;
  }
  footer .copyright {
    flex-direction: column;
    text-align: center;
    font-size: 13px;
  }

  .socail-m {
    justify-content: center;
    margin-inline-start: 0;
    margin-block: 14px;
  }
  .widget_media_image a {
    width: 230px;
    display: block;
    margin: auto;
  }

  .widget_media_image a img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
  }
  .map {
    height: 200px;
}
}
