@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  font-family: 'Alexandria', sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  direction: rtl;
}

* {
  padding: 0;
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

*::-moz-selection {
  background-color: var(--mainColor);
  color: #fff;
}

*::selection {
  background-color: var(--mainColor);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 7px;
}

*::-webkit-scrollbar-track {
  background-color: #eee;
}

*::-webkit-scrollbar-thumb {
  background: var(--mainColor);
  border-radius: 8px;
}

*,
* button:focus {
  outline: 0;
}

div::-webkit-scrollbar,
ul::-webkit-scrollbar,
nav::-webkit-scrollbar {
  height: 5px;
}

.mainColor {
  color: var(--mainColor) !important;
}

.subColor {
  color: var(--subColor) !important;
}

.mainBack {
  background-color: var(--mainColor) !important;
  border-color: var(--mainColor) !important;
}

/* ==================== global style ============================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

a {
  color: #000;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #999;
}

a:focus {
  outline: 0;
}

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

[type=email], [type=number], [type=tel], [type=url] {
  direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  outline: 0;
}

a,
span,
img {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.img_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img_contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

p,
.p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.8;
}

small.text {
  font-size: 12px;
}

.section_padding {
  padding: 80px 0;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  -webkit-box-shadow: 15px 15px 30px #0001;
          box-shadow: 15px 15px 30px #0001;
}

.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

.del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

button {
  border: none;
  padding: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-color: transparent;
}

button:focus {
  border: none;
  -webkit-box-shadow: transparent;
          box-shadow: transparent;
  outline: 0;
}

form .form-group {
  position: relative;
}

form .form-control {
  font-size: 14px;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--mainColor) !important;
}

form input,
form select {
  height: 55px !important;
}

form .form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
  -webkit-box-shadow: none;
          box-shadow: none;
}

form textarea {
  resize: none;
}

form .form-check-input {
  height: 1em !important;
}

.container,
.container-fluid,
.zi_5 {
  position: relative;
  z-index: 5;
}

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.icon18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px #0001;
          box-shadow: inset 0 0 0 2px #0001;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/**********************************************
   Start Loader
**********************************************/
/**********************************************
    Start Public Style
**********************************************/
.swiper-container .swiper-pagination {
  bottom: 0;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--mainColor);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-image: unset;
  background-color: #f5f5f5;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  display: block;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 15px;
  color: var(--mainColor);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-button-next::after,
.swiper-container .swiper-button-prev::after {
  display: none;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--mainColor);
  opacity: 1;
}

.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before {
  color: #fff;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 1%;
  left: auto;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before {
  content: '\f0da';
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next {
  left: 1%;
  right: auto;
}

.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before {
  content: '\f0d9';
}

.butn {
  position: relative;
  padding: .6rem 1.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 18px;
  border: 1px solid transparent;
  border-radius: 30px;
  font-weight: bold;
}

.butn i {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}

.butn.primary_butn {
  background-color: var(--mainColor);
  color: #fff;
}

.butn.primary_border_butn {
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  background-color: transparent;
}

.butn.secondary_butn {
  background-color: var(--subColor);
  color: #fff;
}

.butn.secondary_border_butn {
  border: 1px solid var(--subColor);
  color: var(--subColor);
  background-color: transparent;
}

.butn.white_butn {
  background-color: #fff;
  color: var(--mainColor);
}

.butn.white_border_butn {
  background-color: transparent;
  border: 1px solid #fff;
  color: #333;
}

.butn:hover {
  background-color: #202020;
  border-color: #202020;
  color: #fff !important;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.zr_navs_health_st3 .top_nav {
  background-color: var(--subColor);
  padding: 10px 0;
  font-size: 12px;
}

.zr_navs_health_st3 .top_nav .butn {
  color: #fff;
  font-size: 12px;
  margin: 0 5px;
  padding: 0.5rem 1rem;
}

.zr_navs_health_st3 .navbar .logo {
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}

.zr_navs_health_st3 .navbar .nav-link {
  font-size: 17px;
  margin: 0 .7vw;
}

.zr_navs_health_st3 .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}

.zr_navs_health_st3 .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.zr_navs_health_st3 .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.zr_navs_health_st3 .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.zr_navs_health_st3 .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--mainColor);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.zr_navs_health_st3 .navbar .navbar-toggler .navbar-toggler-icon::after, .zr_navs_health_st3 .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--mainColor);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.zr_navs_health_st3 .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}

.zr_navs_health_st3 .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.zr_footer_health_st3 .content {
  margin-bottom: 30px;
}

.zr_footer_health_st3 .content .logo {
  width: 277px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 25px;
}

.zr_footer_health_st3 .content .p {
  font-size: 12px;
  color: #666666;
  text-align: justify;
  line-height: 2;
}

.zr_footer_health_st3 .content .links a {
  margin-bottom: 20px;
  font-size: 16px;
  color: #494949;
}

.zr_footer_health_st3 .content .links a i {
  color: var(--subColor);
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.zr_footer_health_st3 .content .social_links a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #CDCDCD;
  color: var(--mainColor);
  margin: 0 5px;
  border-radius: 50%;
  font-size: 14px;
}

.zr_footer_health_st3 .content .social_links a:hover {
  background-color: var(--mainColor);
  color: #fff;
}

.zr_footer_health_st3 .copyright_p {
  font-size: 12px;
  color: #878787;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
/* --------------- zr_header_health_st2 --------------- */
.zr_header_health_st3 .item {
  padding: 70px 0;
  height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.zr_header_health_st3 .item .txt_box .title {
  font-size: calc(1.8vw + 35px);
}

.zr_header_health_st3 .item .txt_box .butn {
  padding: 0.7rem 2.7rem;
}

@media screen and (max-width: 991px) {
  .zr_header_health_st3 .zr_header_health_st3 .item .txt_box .title {
    font-size: calc(0.8vw + 35px);
  }
}

/* --------------- zr_services_health_st3 --------------- */
.zr_services_health_st3 {
  background-color: #FBFBFB;
}

.zr_services_health_st3 .serv_card {
  margin: 15px 0;
  text-align: center;
}

.zr_services_health_st3 .serv_card .icon_box {
  width: 235px;
  height: 235px;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 25px auto;
  -webkit-box-shadow: 3px 6px 15px 0 #5551;
          box-shadow: 3px 6px 15px 0 #5551;
}

.zr_services_health_st3 .serv_card .icon_box .icon {
  height: 115px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 5;
}

.zr_services_health_st3 .serv_card .label {
  color: #32353F;
  font-size: 22px;
}

.zr_services_health_st3 .pattern {
  position: absolute;
  width: 38%;
  left: 0;
  top: -5%;
  opacity: .1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}

/* --------------- zr_clinics_health_st2 --------------- */
.zr_clinics_health_st3 .item {
  padding: 100px 0;
  position: relative;
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.zr_clinics_health_st3 .item .txt_box .title {
  font-size: calc(1.5vw + 30px);
}

.zr_clinics_health_st3 .item::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  background: url(../images/overlay-clinics.svg) no-repeat center;
  background-size: cover;
  z-index: 1;
}

.zr_clinics_health_st3 .swiper-pagination {
  bottom: 40px;
}

/* --------------- zr_team_health_st3 --------------- */
.zr_team_health_st3 .dr_card {
  position: relative;
  height: 600px;
  margin-bottom: 25px;
}

.zr_team_health_st3 .dr_card .txt_box {
  padding: 25px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  z-index: 5;
}

.zr_team_health_st3 .dr_card .txt_box h5 {
  font-size: 19px;
}

.zr_team_health_st3 .dr_card .txt_box .name {
  font-size: 22px;
}

.zr_team_health_st3 .dr_card::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  height: 155px;
  background-color: unset;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#5DB6CC), to(transparent));
  background-image: linear-gradient(to top, #5DB6CC, transparent);
  z-index: 1;
  top: unset;
  opacity: .8;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.zr_team_health_st3 .dr_card:hover::before {
  height: 80%;
}

.zr_team_health_st3 .col-lg-3:nth-child(even) .dr_card {
  margin-top: 50px;
}

.zr_team_health_st3 .pattern {
  position: absolute;
  width: 50%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 15%;
}

.zr_team_health_st3 .pattern2 {
  width: 40%;
  position: absolute;
  top: 15%;
  left: 7%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 991px) {
  .zr_team_health_st3 .zr_team_health_st3 .dr_card {
    height: 300px;
  }
  .zr_team_health_st3 .zr_team_health_st3 .dr_card .img_cover {
    -o-object-position: top;
       object-position: top;
  }
  .zr_team_health_st3 .zr_team_health_st3 .col-lg-3:nth-child(even) .dr_card {
    margin-top: 0;
  }
}

/* --------------- zr_branches_health_st3 --------------- */
.zr_branches_health_st3 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#EAF6F8));
  background-image: linear-gradient(to bottom, #fff, #EAF6F8);
}

.zr_branches_health_st3 .txt_box .p {
  margin-bottom: 15px;
}

.zr_branches_health_st3 .pattern {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42%;
}

/* --------------- zr_manager_health_st3 --------------- */
.zr_manager_health_st3 .txt_box .title {
  font-size: 35px;
}

.zr_manager_health_st3 .txt_box .name {
  font-size: 28px;
}

.zr_manager_health_st3 .txt_box .p {
  font-size: 17px;
  color: #666666;
  line-height: 2.2;
  text-align: justify;
}

.zr_manager_health_st3 .img_box {
  position: relative;
}

.zr_manager_health_st3 .img_box .img {
  border-radius: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 80%;
  display: block;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  height: 600px;
  -webkit-box-shadow: 0 0 66px 0 #0001;
          box-shadow: 0 0 66px 0 #0001;
}

.zr_manager_health_st3 .img_box .data_box {
  padding: 25px 25px;
  background-color: #fff;
  border-radius: 25px;
  position: absolute;
  right: 0;
  bottom: 50px;
  -webkit-box-shadow: 14px 40px 66px 0 #0001;
          box-shadow: 14px 40px 66px 0 #0001;
}

.zr_manager_health_st3 .img_box .data_box .job {
  font-size: 16px;
}

.zr_manager_health_st3 .img_box .data_box .name {
  font-size: 25px;
}

.zr_manager_health_st3 .pattern {
  position: absolute;
  left: 3%;
  width: 36%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 50px;
  opacity: .3;
}

/* --------------- zr_contact_health_st3 --------------- */
.zr_contact_health_st3 {
  background-color: var(--subColor);
}

.zr_contact_health_st3 .pattern {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/**********************************************
    Start Edit pg_header
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit Media screens 
**********************************************/
/**********************************************
    Start Edit EN direction 
**********************************************/
html[dir="ltr"] {
}

html[dir="ltr"] body {
  direction: ltr;
  font-family: 'Poppins', sans-serif;
}
/*# sourceMappingURL=style.css.map */