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

* {
  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: 20px;
  height: 3px;
  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;
}

.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.5rem;
  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: 14px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: bold;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.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: #333;
}

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

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

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.zr_navs_health_st4 .top_nav {
  background-color: var(--subColor);
  padding: 10px 0;
  position: relative;
}

.zr_navs_health_st4 .top_nav .r_data .social_links a {
  margin: 0 7px;
}

.zr_navs_health_st4 .navbar .logo {
  width: 135px;
  -o-object-fit: contain;
     object-fit: contain;
}

.zr_navs_health_st4 .navbar .nav-link {
  margin: 0 10px;
  font-weight: 500;
  color: #202020;
}

.zr_navs_health_st4 .navbar .nav-link.active {
  color: var(--mainColor);
  font-weight: 800;
}

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

.zr_navs_health_st4 .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_st4 .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

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

.zr_navs_health_st4 .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_st4 .navbar .navbar-toggler .navbar-toggler-icon::after, .zr_navs_health_st4 .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_st4 .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}

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

.zr_footer_health_st4 {
  background-color: #1A2D6B;
}

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

.zr_footer_health_st4 .content .logo {
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}

.zr_footer_health_st4 .content .p {
  font-size: 13px;
}

.zr_footer_health_st4 .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: #F5F5F5;
  color: var(--mainColor);
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  border-radius: 50%;
  font-size: 14px;
}

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

.zr_footer_health_st4 .content .links a {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 15px;
}

.zr_footer_health_st4 .foot {
  padding: 25px 0;
  position: relative;
  z-index: 5;
  border-top: 1px solid #787878;
}

.zr_footer_health_st4 .foot .copyright_p {
  margin-top: 15px;
  color: #fff;
}

.zr_footer_health_st4 .foot .copyright_p .alyom_logo {
  margin: 0 5px;
  width: 65px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
/* --------------- zr_header_health_st4 --------------- */
.zr_header_health_st4 {
  height: 85vh;
  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_st4::after {
  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-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* --------------- zr_statics_health_st4 --------------- */
.zr_statics_health_st4 .static_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-bottom: 25px;
}

.zr_statics_health_st4 .static_card .icon {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.zr_statics_health_st4 .static_card .txt_content {
  width: calc(100% - 150px);
  text-align: center;
  padding: 5px 0;
}

.zr_statics_health_st4 .static_card .txt_content .counter {
  font-weight: 800;
  font-size: 24px;
}

.zr_statics_health_st4 .static_card .txt_content .label {
  font-weight: 800;
  font-size: 16px;
}

.zr_statics_health_st4 .static_card::before {
  content: '';
  width: 83%;
  height: 100%;
  border: 1px solid var(--subColor);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 16px;
  z-index: -1;
}

/* --------------- zr_about_cards_health_st4 --------------- */
.zr_about_cards_health_st4 {
  background-color: #F5F5F5;
}

.zr_about_cards_health_st4 .about_card {
  background-color: var(--mainColor);
  border-radius: 16px;
  padding: 0 2vw 35px 2vw;
  margin-bottom: 25px;
  position: relative;
  height: calc(100% - 25px);
}

.zr_about_cards_health_st4 .about_card .icon_box {
  background: #fff;
  border-radius: 0 0 16px 16px;
  width: 100px;
  height: 120px;
  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;
}

.zr_about_cards_health_st4 .about_card .icon_box .icon {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.zr_about_cards_health_st4 .about_card .content .p {
  line-height: 2;
  font-size: 13px;
}

.zr_about_cards_health_st4 .vector {
  position: absolute;
  left: 0;
  top: 15px;
  width: 155px;
  -o-object-fit: contain;
     object-fit: contain;
}

.zr_about_cards_health_st4 .vector2 {
  position: absolute;
  bottom: 35px;
  right: 0;
  width: 155px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* --------------- zr_partners_health_st4 --------------- */
.zr_partners_health_st4 .partner_box .partnerLogo {
  max-width: 85%;
  height: 85px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.zr_partners_health_st4 .partner_box:hover .partnerLogo {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.zr_partners_health_st4 .partners_swiper {
  overflow: hidden;
}

/* --------------- zr_doctors_health_st4 --------------- */
.zr_doctors_health_st4 .dr_card {
  border-radius: 16px;
  border: 1px solid #eee;
}

.zr_doctors_health_st4 .dr_card .dr_img {
  height: 400px;
  border-radius: 16px;
}

.zr_doctors_health_st4 .dr_card .card-body .ul .li {
  display: block;
  font-size: 14px;
  color: #303030;
  margin-bottom: 7px;
}

.zr_doctors_health_st4 .dr_card::before {
  content: '';
  width: 50%;
  height: 80%;
  background: url(../images/icon.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 5%;
  right: 40%;
  opacity: .1;
}

.zr_doctors_health_st4 .dr_swiper {
  overflow: hidden;
}

/* --------------- zr_blog_health_st4 --------------- */
.zr_blog_health_st4 {
  background-color: #f9f9f9;
}

.zr_blog_health_st4 .sm_blog_card {
  border: 1px solid #eee;
  border-radius: 16px;
  position: relative;
  margin-bottom: 25px;
  background-color: #fff;
}

.zr_blog_health_st4 .sm_blog_card .img_cover {
  height: 235px;
  border-radius: 16px;
}

.zr_blog_health_st4 .sm_blog_card .card-body .more_link {
  color: var(--mainColor);
  text-decoration: underline;
  font-weight: 800;
}

.zr_blog_health_st4 .lg_blog_card {
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 16px;
  position: relative;
  margin-bottom: 25px;
}

.zr_blog_health_st4 .lg_blog_card .img_cover {
  height: 480px;
  border-radius: 16px;
}

.zr_blog_health_st4 .lg_blog_card .card-body {
  padding: 2rem 1.5rem;
}

/* --------------- zr_contact_health_st4 --------------- */
.zr_contact_health_st4 .contact_box .form-group {
  margin-bottom: 1.1rem;
}

.zr_contact_health_st4 .contact_box .form-group .form-control {
  background-color: #F5F5F5;
  border-color: #eee;
  border-radius: 16px;
}

.zr_contact_health_st4 .contact_box .form-group .form-control::-webkit-input-placeholder {
  color: #A1A1A1;
}

.zr_contact_health_st4 .contact_box .form-group .form-control:-ms-input-placeholder {
  color: #A1A1A1;
}

.zr_contact_health_st4 .contact_box .form-group .form-control::-ms-input-placeholder {
  color: #A1A1A1;
}

.zr_contact_health_st4 .contact_box .form-group .form-control::placeholder {
  color: #A1A1A1;
}

.zr_contact_health_st4 .contact_box .form-group input, .zr_contact_health_st4 .contact_box .form-group select {
  height: 60px !important;
}

.zr_contact_health_st4 .time_box {
  background-color: var(--mainColor);
  border-radius: 16px;
  padding: 45px 25px;
}

.zr_contact_health_st4 .time_box .day_data {
  font-size: 20px;
}

/**********************************************
    Start Edit pg_header
**********************************************/
.zr_pg_header_health_st4 .bread {
  color: #fff;
  font-size: 18px;
}

.zr_pg_header_health_st4 .bread .item {
  margin: 0 10px;
  display: inline-block;
  font-size: 20px;
}

.zr_pg_header_health_st4 .bread .item.active {
  color: var(--subColor);
  font-weight: bold;
}

.zr_pg_header_health_st4 .title {
  font-weight: 900;
  font-size: 35px;
}

.zr_pg_header_health_st4 .bg {
  -o-object-position: top;
     object-position: top;
}

.zr_pg_header_health_st4::after {
  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-color: rgba(0, 0, 0, 0.4);
}

/**********************************************
    Start Edit team Page 
**********************************************/
.zr_team_pg_health_st4 .team_card {
  margin-bottom: 30px;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid #eee;
}

.zr_team_pg_health_st4 .team_card .img_box {
  height: 250px;
  border-radius: 25px 25px 0 0;
  overflow: hidden;
}

.zr_team_pg_health_st4 .team_card .card-body {
  text-align: center;
  padding: 1.5rem 1.25rem;
}

.zr_team_pg_health_st4 .team_card .card-body .name {
  font-size: 24px;
  color: #000;
  margin-bottom: 15px;
}

.zr_team_pg_health_st4 .team_card .card-body .p {
  color: #333;
  font-size: 14px;
}

.zr_team_pg_health_st4 .team_card .card-body .butn {
  margin: 15px auto 0 auto;
}

.zr_contactNum_sec_health_st4 .inner {
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 0px 2vw;
}

.zr_contactNum_sec_health_st4 .inner .txt .logo {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 15px;
}

.zr_contactNum_sec_health_st4 .inner .txt h1 {
  font-weight: 800;
  color: #000;
  font-size: 40px;
}

/**********************************************
    Start Edit services Page 
**********************************************/
.zr_services_pg_health_st4 .serv_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F5F5F5;
  border-radius: 25px;
  padding: 15px;
  margin-bottom: 30px;
}

.zr_services_pg_health_st4 .serv_card .icon {
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}

.zr_services_pg_health_st4 .serv_card .txt {
  width: calc(100% - 110px);
}

.zr_services_pg_health_st4 .serv_card .txt .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 17px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.zr_services_pg_health_st4 .serv_card .txt .p {
  margin-bottom: 10px;
  font-size: 14px;
  height: 51px;
  overflow: hidden;
}

.zr_services_pg_health_st4 .serv_card .txt .more_butn {
  color: var(--mainColor);
  font-weight: bold;
  text-decoration: underline;
  font-size: 15px;
}

.zr_services_det_health_st4 .p {
  font-size: 17px;
  line-height: 2.2;
}

/**********************************************
    Start Edit partners Page 
**********************************************/
.zr_partners_health_st4 .partner_card {
  border-radius: 25px;
  border: 1px solid #eee;
  margin-bottom: 30px;
  position: relative;
}

.zr_partners_health_st4 .partner_card .logo {
  max-width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
  height: 200px;
}

.zr_partners_health_st4 .partner_card .title {
  border-radius: 0 0 25px 25px;
  background-color: #F5F5F5;
  text-align: center;
  font-weight: 800;
  font-size: 18px;
  padding: 20px 10px;
}

/**********************************************
    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 */