/* fonts */
@font-face {
  font-family: "FontRegular";
  src: url("../webfonts/Gill-Sans.otf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "FontMedium";
  src: url("../webfonts/Gill-Sans-Medium.otf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "FontBold";
  src: url("../webfonts/Gill-Sans-Bold.otf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "FontBlack";
  src: url("../webfonts/Gill-Sans-Heavy.otf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "TanseekModern";
  src: url("../webfonts/TanseekModern/TanseekModernProArabic-Light.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "TanseekModern-bold";
  src: url("../webfonts/TanseekModern/TanseekModernProArabic-Bold.ttf");
  font-weight: bold;
  font-style: normal;
}
/*
@font-face {
  font-family: "cairo";
  src: url("../webfonts/cairo/Cairo-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "cairo-bold";
  src: url("../webfonts/cairo/Cairo-Bold.ttf");
  font-weight: bold;
  font-style: normal;
}
*/
:root {
  --main-color: #005289;
  --sub-color: #3fbeac;
  --regular: "FontRegular";
  --medium: "FontMedium";
  --bold: "FontBold";
  --black: "FontBlack";
  /* --arReg: "cairo"; */
  /* --arBold: "cairo-bold"; */
  --arReg: "TanseekModern";
  --arBold: "TanseekModern-bold";
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--regular);
}
ul {
  list-style-type: none;
}
p,
ul {
  margin-bottom: 0;
}
a {
  text-decoration: none !important;
}
input[type="submit"] {
  color: inherit;
}

/* main nav */
.main_nav {
  padding: 1rem 0.5rem;
}
.main_nav .container {
  position: relative;
}
.header_slider {
  overflow: hidden;
}
header .main_nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
}
.main_nav .logo img {
  width: 125px;
}
.main_nav ul li {
  display: inline-block;
  padding: 0 1rem;
  position: relative;
}
.main_nav ul li a {
  color: #242424;
  font-size: 16px;
  font-family: var(--medium);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
}
.main_nav ul li a i {
  margin-left: 0.5rem;
}
.rtl .main_nav ul li a {
  font-family: var(--arReg);
  font-size: 24px;
}
.main_nav ul li.active a,
.main_nav ul li a:hover,
.mobile_menu .dropdown:hover {
  color: var(--main-color);
}
.main_nav ul li:hover ul {
  display: block;
}
.main_nav ul li ul {
  position: absolute;
  width: 150px;
  right: 0;
  top: 100%;
  border: 1px solid #3fbeac;
  display: none;
  max-height: 190px;
  overflow: auto;
}
.main_nav ul li ul::-webkit-scrollbar {
  width: 3.5px;
}

.main_nav ul li ul::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px var(--main-color);
  -webkit-box-shadow: inset 0 0 6px var(--main-color);
}

.main_nav ul li ul::-webkit-scrollbar-thumb {
  background: var(--main-color);
}
.main_nav ul li ul li {
  display: block;
  padding: 0;
  background-color: #fff;
}
.main_nav ul li ul li a {
  color: #b7b7b7;
  font-size: 14px;
  padding: 0.5rem 0.5rem;
  border-bottom: 1px solid #b7b7b7;
}
.main_nav ul li ul li:last-of-type a {
  border-bottom: 0;
}
.main_nav .opening_menu {
  cursor: pointer;
  font-size: 24px;
  color: var(--main-color);
  position: relative;
  top: 5px;
  right: -5px;
}
.mobile_menu {
  position: fixed;
  background-color: #fff;
  width: 300px;
  top: 0;
  left: -400px;
  height: 100%;
  z-index: 999;
  padding: 1rem;
  overflow: auto;
}
.mobile_menu img {
  margin-bottom: 1rem;
  width: 200px;
}
.mobile_menu ul {
  padding-left: 0;
}
.mobile_menu ul li {
  width: 100%;
  padding: unset;
}
.mobile_menu ul .dropdown,
.mobile_menu ul li a {
  padding: 1rem 0.75rem;
  color: #333;
  border-bottom: 1px solid #dbdbdb;
  display: block;
  font-weight: bold;
  cursor: pointer;
}
.mobile_menu ul .dropdown div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile_menu ul .dropdown ul {
  display: none;
  position: unset;
  width: 100%;
  border: unset;
  margin-top: 0.5rem;
}
.mobile_menu ul .dropdown ul li a {
  padding-left: 0;
}
.mobile_menu ul .dropdown ul li:last-of-type a {
  padding-bottom: 0;
}
.mobile_menu ul .dropdown:hover ul {
  display: none;
}
.mobile_menu .customBtn {
  width: 100%;
}
.mobile_menu .close_btn {
  position: absolute;
  top: 2.2rem;
  right: 1rem;
  font-size: 22px;
  cursor: pointer;
}
.main_nav .body_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  background-color: rgb(0, 0, 0, 0.5);
  display: none;
}
.main_nav .open_search {
  position: relative;
  cursor: pointer;
}
.main_nav .search_box {
  position: absolute;
  width: 420px;
  top: 0.75rem;
  right: 0;
  height: 45px;
  border-radius: 25px;
  border: 2px solid var(--main-color);
  z-index: 3;
  background-color: #fff;
  display: none;
}
.main_nav .search_box form {
  height: 100%;
}
.main_nav .search_box input {
  border: none;
  font-size: 14px;
  background: none;
  height: 100%;
  padding: 0 1rem;
  width: 85%;
}
.main_nav .search_box input:focus,
.main_nav .search_box button:focus {
  outline: none;
}
.main_nav .search_box button {
  border: none;
  background: none;
  height: 100%;
  position: absolute;
  right: 2rem;
  cursor: pointer;
}
.main_nav .search_box button.close_search {
  right: 0.7rem;
  color: var(--sub-color);
}
.main_nav .fab {
  width: 20px;
  height: 20px;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #242424;
}
.main_nav .btns li {
  padding: 0 0.5rem;
}

/* header */
header {
  position: relative;
}
header .inner_box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  height: 550px;
}
header .inner_box.slide_1 {
  background-image: url(../imgs/header1.png);
}
header .inner_box.slide_2 {
  background-image: url(../imgs/header2.png);
}
header .inner_box h2 {
  font-size: 40px;
  margin-bottom: 2.5rem;
  color: var(--main-color);
  font-family: var(--bold);
  text-transform: uppercase;
}
.rtl header .inner_box h2 {
  font-family: var(--arBold);
  font-size: 60px;
}
header .inner_box h2 span {
  color: var(--sub-color);
  display: block;
}
header .inner_box a {
  padding: 0.75rem 2rem;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
  background-color: var(--sub-color);
}
.rtl header .inner_box a {
  font-size: 21px;
}
.main_btn {
  position: relative;
  z-index: 2;
}
.main_btn::after {
  position: absolute;
  content: "";
  width: 0;
  top: 0;
  height: 100%;
  right: 0;
  z-index: -1;
  background-color: var(--main-color);
  transition: all 0.5s ease;
}
.main_btn:hover::after {
  left: 0;
  width: 100%;
}
header .inner_page_image {
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
header .inner_page_image h1 {
  font-size: 40px;
  margin-bottom: 0;
  color: var(--main-color);
  text-transform: uppercase;
  font-family: var(--black);
}
.rtl header .inner_page_image h1 {
  font-family: var(--arBold);
  font-size: 60px;
}
header .inner_page_image p {
  width: 50%;
  margin: 2rem auto 0;
}
.arrows {
  position: absolute;
  bottom: 2rem;
  right: 0;
  z-index: 2;
  width: 100%;
  font-size: 30px;
  color: #232323;
}
.arrows ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  width: max-content;
  margin-left: auto;
}
.arrows ul li:first-of-type {
  margin-right: 1rem;
}

/* book appointment */
.book_appointment {
  position: relative;
  padding: 2rem 0;
  background-color: var(--sub-color);
  padding-bottom: 0;
}
.book_appointment.inner {
  padding: 4rem 0;
  background-color: #f8f8f8;
}
.book_appointment h5 {
  color: #fff;
  font-size: 22px;
}
.book_appointment h3 {
  font-size: 40px;
  font-family: var(--black);
  color: var(--main-color);
  text-transform: uppercase;
}
.rtl .book_appointment h3 {
  font-size: 60px;
  font-family: var(--arReg);
}
.book_appointment.inner h3 {
  margin-bottom: 3rem;
}
.book_appointment h3 span {
  display: block;
}
.book_appointment input,
.book_appointment select {
  color: #b7b7b7;
  border-radius: 0;
  height: 50px !important;
}
.rtl .book_appointment select {
  font-size: 1.5rem;
}
.book_appointment input::placeholder {
  color: #b7b7b7;
}
.book_appointment input[type="submit"] {
  border: none;
  width: 100%;
  height: 55px !important;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  background-color: var(--main-color);
}
.book_appointment input[type="date"] {
  cursor: pointer;
}
.msg_btn {
  position: fixed;
  bottom: 0;
  right: 1rem;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 26px;
  color: var(--sub-color);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: var(--main-color);
  z-index: 99;
}

/* why us */
.why_us .first_col {
  display: flex;
  padding: 1rem 6rem;
  align-items: center;
  background-color: #f8f8f8;
}
.why_us .first_col.bg_white {
  background-color: #fff;
}
.why_us .first_col h2 {
  font-size: 40px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-family: var(--black);
  color: var(--sub-color);
}
.rtl .why_us .first_col h2 {
  font-size: 60px;
  font-family: var(--arReg);
}
.why_us .first_col h2 span {
  display: block;
  color: var(--main-color);
}
.why_us p {
  font-size: 18px;
  color: #232323;
  margin-bottom: 1.5rem;
}
.why_us a {
  text-transform: capitalize;
  color: #fff;
  display: block;
  width: max-content;
  padding: 0.75rem 3rem;
  background-color: var(--sub-color);
}
.rtl .why_us a {
  font-size: 24px;
}
.why_us p a {
  background: none;
  padding: 0;
  color: #000;
  font-size: 20px;
  font-family: var(--black);
  text-decoration: underline !important;
}
.rtl .why_us p a {
  font-family: var(--arReg);
  font-size: 30px;
}
.rtl .why_us p {
  font-size: 27px;
}
.why_us img {
  width: 100%;
}
.why_us ul {
  padding-left: 1rem;
}
.why_us ul li {
  position: relative;
  padding-left: 1rem;
  font-size: 16px;
  padding: 0.5rem 1rem;
}
.rtl .why_us ul li {
  font-size: 24px;
}
.department_details li {
  position: relative;
  padding-left: 1rem;
  font-size: 18px;
  padding: 0.5rem 1rem;
}
.rtl .department_details li {
  font-size: 27px;
}
.why_us ul li:before,
.department_details li:before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 0.25rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid #000;
}
.our_values {
  padding: 5rem 0;
}
.our_values .inner_box {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
.our_values .inner_box .img_box {
  width: 80px;
  min-width: 80px;
  height: 80px;
  overflow: hidden;
  margin-right: 1rem;
  padding-right: 1rem;
  border-right: 1px solid #ccc;
}
.our_values .inner_box .img_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.our_values h4 {
  font-size: 20px;
  color: var(--sub-color);
  font-family: var(--black);
}
.rtl .our_values h4 {
  font-family: var(--arReg);
  font-size: 30px;
}
.our_values p {
  margin-bottom: 0;
  width: 65%;
}
.our_values.patient_center p {
  margin-bottom: 0;
  width: 100%;
}
.why_us ul.capacity {
  padding-left: 0;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.why_us ul.capacity li {
  width: 49%;
  font-size: 18px;
  /*margin-bottom: 0.5rem;*/
  display: inline-block;
  margin-left: -0.25rem;
  padding: 0.5rem 1rem;
  flex-basis: 50%;
}
.why_us ul.capacity li.backColor {
  background-color: #f1f1f1;
}
.why_us ul.capacity li span {
  float: right;
  font-weight: bold;
  color: var(--sub-color);
  margin-right: 1rem;
}

/* departments */
.departments_section {
  position: relative;
  text-align: center;
  padding: 2rem 0 4rem;
}
.departments_section h2 {
  text-align: left;
}
.departments_section .img_box {
  height: 100px;
  margin-bottom: 1rem;
  cursor: pointer;
}
.departments_section .img_box.active {
  box-shadow: 0px 3px 6px #00000029;
}
.departments_section .img_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.departments_section h4 {
  font-size: 16px;
  color: var(--main-color);
}
.rtl .departments_section h4 {
  font-size: 24px;
}
.department_details {
  padding: 4rem 0;
  display: none;
  background-color: #f8f8f8;
}
.department_details.active {
  display: block;
}
.department_details h2 {
  font-size: 40px;
  color: var(--sub-color);
  font-family: var(--black);
  text-transform: uppercase;
}
.department_details h2 {
  font-size: 60px;
  font-family: var(--arReg);
}
.department_details h2 span {
  display: block;
  color: var(--main-color);
}
.department_details h3 {
  font-size: 30px;
  margin: 2rem 0 1rem;
  color: var(--sub-color);
  font-family: var(--black);
}
.rtl .department_details h3 {
  font-size: 36px;
  font-family: var(--arBold);
}
.department_details p {
  margin-top: 2rem;
  font-size: 18px;
}
.rtl .department_details p {
  font-size: 27px;
}
.department_details p span {
  font-size: 24px;
  color: var(--sub-color);
  font-family: var(--black);
}
.rtl .department_details p span {
  font-size: 36px;
  font-family: var(--arBold);
}

.departments_section .container .departments_slider .slick-list .slick-track {
  height: 200px;
}

.departments_section
  .container
  .departments_slider
  .slick-list
  .slick-track
  .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}

.departments_section
  .container
  .departments_slider
  .slick-list
  .slick-track
  .slick-slide:hover {
  transform: scale(1.5);
}
/* about quote */
.about_quote {
  padding: 5rem 0;
  background-color: var(--main-color);
}
.about_quote h1 {
  font-size: 32px;
  text-align: center;
  color: var(--sub-color);
  font-family: var(--bold);
}
.rtl .about_quote h1 {
  font-size: 48px;
  font-family: var(--arBold);
}

/* gallery section */
.gallery_section {
  padding: 3rem 0;
  background-color: #f8f8f8;
}
.departments_section h2,
.gallery_section h2,
.our_blogs h2,
.partners_section h2 {
  font-size: 40px;
  margin-bottom: 3rem;
  text-transform: uppercase;
  color: var(--main-color);
  font-family: var(--black);
}
.rtl .departments_section h2,
.rtl .gallery_section h2,
.rtl .our_blogs h2,
.rtl .partners_section h2 {
  font-size: 60px;
  font-family: var(--arReg);
}
.gallery_section .img_box {
  height: 300px;
  overflow: hidden;
  margin-bottom: 2rem;
  cursor: pointer;
}
.gallery_section .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery_section .popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.75);
  z-index: 999;
  display: none;
}
.gallery_section .popup .inner_popup {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  padding: 1rem;
  transform: translate(-50%, -50%);
}
.gallery_section .popup .inner_popup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery_section .popup .close_popup {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
}
.gallery_section .popup .right_popup {
  z-index: 50;
  position: absolute;
  margin: 85px 0px;
  right: 2rem;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  height: 80%;
}
.gallery_section .popup .left_popup {
  z-index: 50;
  position: absolute;
  margin: 85px 0px;
  left: 2rem;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  height: 80%;
}

/* our blog section */
.our_blogs {
  padding: 4rem 0 6rem;
  overflow: hidden;
  position: relative;
}
.our_blogs .blog_box {
  padding: 1rem;
  box-shadow: 0px 3px 6px #00000029;
}
.our_blogs .blog_box .img_box {
  height: 250px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.our_blogs .blog_box .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our_blogs .blog_box h3 {
  font-size: 18px;
  margin-bottom: 0;
  color: var(--main-color);
  font-family: var(--bold);
}
.rtl .our_blogs .blog_box h3 {
  font-size: 27px;
  font-family: var(--arBold);
}
.our_blogs .blog_box p {
  color: #232323;
  margin: 1rem 0;
}
.our_blogs .blog_box a {
  display: block;
  width: max-content;
  color: var(--sub-color);
  text-decoration: underline;
}
.our_blogs .slick-slide > div,
.partners_section .slick-slide > div {
  padding: 10px 15px;
}

/* partners section */
.partners_section {
  padding: 4rem 0 6rem;
  position: relative;
}
.partners_section .img_box {
  height: 150px;
  overflow: hidden;
}
.partners_section .img_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.partners_section .view_more {
  color: #fff;
  display: block;
  width: max-content;
  margin: 2rem auto 0;
  padding: 0.65rem 2rem;
  background-color: var(--sub-color);
}

/* sign up section */
.subscribe_section {
  color: #fff;
  padding: 6rem 0;
  background: var(--sub-color);
}
.subscribe_section h3 {
  font-size: 40px;
  font-family: var(--bold);
  text-transform: uppercase;
}
.rtl .subscribe_section h3 {
  font-family: var(--arBold);
  font-size: 60px;
}
.subscribe_section h3 span {
  display: block;
  color: var(--main-color);
}
.subscribe_section p {
  font-size: 25px;
  font-family: var(--medium);
}
.rtl .subscribe_section p {
  font-family: var(--arReg);
  font-size: 37px;
}
.subscribe_section input {
  height: 50px;
  border-radius: 0;
  margin-bottom: 1rem;
}
.subscribe_section a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-family: var(--medium);
  color: #fff;
  background-color: var(--main-color);
}
.rtl .subscribe_section a {
  font-family: var(--arReg);
  font-size: 24px;
}

/* footer */
footer {
  padding: 4rem 0;
  background-color: #f8f8f8;
}
footer .logo img {
  width: 200px;
}
footer h3,
.complaint_section .contact_details h3 {
  font-size: 14px;
  margin-bottom: 1.5rem;
  color: var(--main-color);
  font-family: var(--bold);
  text-transform: uppercase;
}
.rtl footer h3,
.rtl .complaint_section .contact_details h3 {
  font-family: var(--arBold);
  font-size: 21px;
}
footer h4,
.complaint_section .contact_details h4 {
  font-size: 14px;
  color: #242424;
  font-family: var(--medium);
  margin-bottom: 0;
}
.rtl footer h4,
.rtl .complaint_section .contact_details h4 {
  font-family: var(--arReg);
  font-size: 21px;
}
footer .supporting a,
.complaint_section .contact_details .supporting a {
  font-size: 14px;
  color: var(--main-color);
  text-decoration: underline;
}
.rtl footer .supporting a,
.rtl .complaint_section .contact_details .supporting a {
  font-size: 21px;
}
footer p,
.complaint_section .contact_details p {
  color: #242424;
  font-size: 14px;
}
.rtl footer p,
.rtl .complaint_section .contact_details p {
  font-size: 21px;
}
footer .social li,
.complaint_section .contact_details .social li {
  display: inline-block;
}
footer .social li a,
.complaint_section .contact_details .social li a {
  width: 20px;
  height: 20px;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  background-color: #242424;
}
footer h5,
.complaint_section .contact_details h5 {
  font-size: 14px;
  margin-bottom: 0.25rem;
  color: var(--sub-color);
  font-family: var(--medium);
}
footer h5 a,
.complaint_section .contact_details h5 a {
  color: #000;
  font-weight: normal;
}
.rtl footer h5,
.rtl .complaint_section .contact_details h5 {
  font-family: var(--arReg);
  font-size: 21px;
}
footer .social,
.complaint_section .contact_details .social {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
footer .social h6,
.complaint_section .contact_details h6 {
  color: #b7b7b7;
  margin-bottom: 0;
  margin-right: 1rem;
}

/* copyright */
.copyright {
  color: #fff;
  padding: 1.5rem 0;
  font-size: 14px;
  background: var(--sub-color);
}
.copyright span {
  margin-right: 1.5rem;
  color: var(--main-color);
}
.copyright ul {
  text-align: right;
}
.copyright ul li {
  display: inline-block;
}
.copyright ul li:first-of-type {
  padding-right: 0.5rem;
  margin-right: 0.5rem;
  border-right: 1px solid #fff;
}
.copyright a {
  color: #fff;
  text-decoration: underline !important;
}

/* complaint page */
header.complaint .inner_page_image {
  background-image: url(../imgs/complaint.png);
}
header.contact .inner_page_image {
  background-image: url(../imgs/contact.png);
}
header.career .inner_page_image {
  background-image: url(../imgs/careers.png);
}
.complaint_section {
  padding: 4rem 0;
}
.complaint_section .contact_details {
  margin: 3rem 0;
}
.complaint_section .custom_input {
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main-color);
}
.complaint_section .custom_input input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.complaint_section .custom_input span {
  color: var(--sub-color);
  font-family: var(--bold);
}
.complaint_section h2 {
  width: 37%;
  font-size: 40px;
  color: var(--main-color);
  font-family: var(--black);
  margin-bottom: 3rem;
  text-transform: uppercase;
}
.complaint_section h2 span {
  display: block;
}
.complaint_section .form-control {
  height: 50px;
  border-radius: 0 !important;
  border-color: #b7b7b7;
  background-color: #fff !important;
}
.rtl .complaint_section select.form-control {
  font-size: 1.5rem;
}
.complaint_section .form-control::placeholder {
  color: #b7b7b7;
}
.complaint_section textarea.form-control {
  height: 150px;
}
.complaint_section input[type="submit"] {
  width: 100%;
  height: 52px;
  border: none;
  color: #fff;
  cursor: pointer;
  background-color: var(--main-color);
}
/* map */
.map_section iframe {
  width: 100%;
  height: 600px;
  margin-bottom: -0.5rem;
}

/* companies */
header.companies .inner_page_image {
  background-image: url(../imgs/companies.png);
}
.companies_section {
  padding: 4rem 0;
}
.companies_section .inner_box {
  text-align: center;
  margin-bottom: 1rem;
}
.companies_section .inner_box .img_box {
  height: 150px;
  overflow: hidden;
}
.companies_section .inner_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.companies_section .inner_box h4 {
  font-size: 14px;
  color: var(--main-color);
}

/* about */
header.about .inner_page_image {
  background-image: url(../imgs/about.png);
}

/* blogs */
header.blogs .inner_page_image {
  background-image: url(../imgs/blogs.png);
}
.main_blogs {
  padding: 5rem 0;
}
.blog_filter .form-group {
  position: relative;
}
.blog_filter .form-group i {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #b7b7b7;
}
.blog_filter input.form-control {
  height: 50px;
  border-radius: 0;
  padding-left: 2.5rem;
  border: 1px solid #b7b7b7;
}
.blog_filter h4 {
  font-size: 18px;
  color: #242424;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.blog_filter li {
  display: flex;
  font-size: 14px;
  color: #b7b7b7;
  align-items: center;
  text-transform: capitalize;
  justify-content: space-between;
  border-bottom: 1px solid #b7b7b7;
  margin-bottom: 1.5rem;
}
.blog_filter li i {
  margin-right: 0.5rem;
}
.blog_filter .all_tags {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}
.blog_filter .all_tags a {
  border-radius: 4px;
  color: #b7b7b7;
  border: 1px solid;
  display: block;
  text-align: center;
  padding: 0.75rem;
  text-transform: capitalize;
}
.main_blogs .blog_box {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #b7b7b7;
}
.main_blogs .blog_box h2 {
  font-size: 30px;
  margin-bottom: 1rem;
  font-family: var(--black);
  color: var(--main-color);
}
.main_blogs .blog_box .details {
  display: flex;
  margin-bottom: 1rem;
}
.main_blogs .blog_box .details span {
  display: block;
  font-size: 14px;
  color: #b7b7b7;
  margin-right: 1rem;
  text-transform: capitalize;
}
.rtl .main_blogs .blog_box .details span {
  font-size: 21px;
}
.main_blogs .blog_box .details i {
  margin-right: 0.25rem;
}
.main_blogs .blog_box .img_box {
  height: 300px;
  overflow: hidden;
}
.main_blogs .blog_box .img_box img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}
.main_blogs .blog_box p {
  font-size: 16px;
  color: #232323;
  margin: 1rem 0 2rem;
}
.rtl .main_blogs .blog_box p {
  font-size: 24px;
}
.main_blogs .blog_box a {
  color: #fff;
  display: block;
  width: max-content;
  padding: 0.6rem 3rem;
  text-transform: capitalize;
  background-color: var(--sub-color);
}

/* single blog */
.single_blog_head {
  padding: 7rem 0.5rem 3rem;
}
.single_blog_head h3 {
  font-size: 16px;
  color: #232323;
  margin-bottom: 1.5rem;
  font-family: var(--medium);
}
.rtl .single_blog_head h3 {
  font-family: var(--arReg);
  font-size: 24px;
}
.single_blog_head h1 {
  font-size: 40px;
  color: var(--main-color);
  font-family: var(--black);
}
.rtl .single_blog_head h1 {
  font-family: var(--arBold);
  font-size: 60px;
}
.single_blog_head h1 span {
  display: block;
}
.single_blog_img {
  height: 440px;
  overflow: hidden;
}
.single_blog_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single_blog_content {
  padding: 4rem 0;
}
.single_blog_content h3 {
  font-size: 20px;
  color: #232323;
  margin-bottom: 1rem;
  font-family: var(--bold);
}
.rtl .single_blog_content h3 {
  font-family: var(--arBold);
  font-size: 30px;
}
.single_blog_content p {
  font-size: 16px;
  color: #232323;
  margin-bottom: 4rem;
}
.rtl .single_blog_content p {
  font-size: 24px;
}
.single_blog_content span {
  display: flex;
  font-size: 13px;
  color: #6f6f6f;
  align-items: center;
}
.single_blog_content span i {
  margin-right: 1rem;
  width: 28px;
  height: 28px;
  color: #fff;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: var(--sub-color);
}
.single_blog_content .social li {
  color: #6f6f6f;
  font-size: 14px;
  display: inline-block;
  margin-right: 0.5rem;
}
.rtl .single_blog_content .social li {
  font-size: 21px;
}
.single_blog_content .social li a {
  width: 28px;
  height: 28px;
  color: #fff;
  display: flex;
  font-size: 17px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: var(--sub-color);
}
.next_posts {
  padding: 3rem 0;
  background: var(--main-color);
}
.next_posts a {
  color: #fff;
  display: block;
  font-size: 18px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
}
.next_posts a i {
  font-size: 26px;
}
.next_posts p {
  color: #fff;
  font-size: 20px;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.blog_section.single {
  padding: 4rem 0;
}
.blog_section h1 {
  font-size: 40px;
  color: var(--main-color);
  font-family: var(--black);
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.rtl .blog_section h1 {
  font-family: var(--arBold);
  font-size: 60px;
}
.blog_section a {
  margin: 1rem auto;
  padding: 0.7 3rem;
}
.blog_section .inner_box {
  width: 90%;
  text-align: center;
  margin: 0 auto 3rem;
}
.blog_section .img_box {
  height: 250px;
  overflow: hidden;
  box-shadow: 0px 3px 6px #00000029;
}
.blog_section .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog_section .content_box span {
  color: #6f6f6f;
  font-size: 10px;
  display: block;
  margin: 1.25rem 0;
}
.rtl .blog_section .content_box span {
  font-size: 15px;
}
.blog_section .content_box p {
  color: #b7b7b7;
  font-size: 16px;
  color: var(--main-color);
  font-family: var(--bold);
  width: 80%;
  margin: 0 auto;
}
.rtl .blog_section .content_box p {
  font-family: var(--arBold);
  font-size: 24px;
}

/* find doctor */
header.find_doctor .inner_page_image {
  background-image: url(../imgs/find_doctor.png);
}
.search_doctor {
  padding: 4rem 0;
}
.search_doctor.new_version {
  padding-top: 10rem;
}
.doctor_name {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../imgs/find_doctor.png);
}
.doctor_name h1 {
  font-size: 40px;
  margin-bottom: 0;
  color: var(--main-color);
  text-transform: uppercase;
  font-family: var(--black);
}
.search_doctor h3 {
  font-size: 40px;
  color: var(--main-color);
  font-family: var(--black);
  text-transform: uppercase;
  margin-bottom: 0;
}
.rtl .search_doctor h3 {
  font-size: 60px;
  font-family: var(--arReg);
}
.search_doctor h3 span {
  display: block;
}
.search_doctor input.form-control,
.search_doctor select {
  width: 100%;
  height: 50px !important;
  border-radius: 0;
  border-color: #b7b7b7;
  padding-left: 2.5rem;
}
.search_doctor select {
  cursor: pointer;
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.rtl .search_doctor select {
  font-size: 1.5rem;
}
.search_doctor .form-group {
  position: relative;
  margin-bottom: 0;
}
.search_doctor .form-group i {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #b7b7b7;
}
.search_doctor button {
  color: #fff;
  margin-top: 1rem;
  padding: 0.75rem;
  text-align: center;
  height: 51px;
  width: 100%;
  cursor: pointer;
  border: none;
  background-color: var(--main-color);
}
.search_doctor .form-group .listOfDoctors {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
}
.search_doctor .form-group .listOfDoctors li {
  cursor: pointer;
  color: #777;
  padding: 0.5rem 1rem;
  background-color: #f1f1f1;
  border-bottom: 1px solid #ddd;
}
.search_doctor .form-group .listOfDoctors li:last-of-type {
  border-bottom: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.our_doctors {
  padding: 4rem 0;
  position: relative;
}
.our_doctors .portfolio-grid {
  padding: 2rem 0;
}
.our_doctors .portfolio-filters,
.our_doctors .portfolio-slider {
  padding-left: 0;
  text-align: center;
  margin-bottom: 5rem;
}
.our_doctors .portfolio-slider,
.our_doctors .arrows {
  display: none;
}
.our_doctors .portfolio-filters li,
.portfolio-slider a {
  color: #b7b7b7;
  font-size: 16px;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #b7b7b7;
  display: inline-block;
  margin: 0 -2px;
  text-transform: capitalize;
}
.portfolio-slider a {
  display: block;
}
.our_doctors .portfolio-filters li.active {
  color: var(--sub-color);
  border-color: var(--sub-color);
}
.our_doctors .portfolio-box .portfolio-img {
  height: 210px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--main-color);
}
.our_doctors .portfolio-box {
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0px 3px 6px #00000029;
}
.our_doctors .portfolio-box h3 {
  font-size: 18px;
  /* margin-bottom: 1.5rem; */
  margin-bottom: 0.5rem;
  color: var(--main-color);
  font-family: var(--black);
}
.rtl .our_doctors .portfolio-box h3 {
  font-size: 27px;
  font-family: var(--arReg);
}
.our_doctors .portfolio-box h6 {
  font-size: 14px;
  margin-bottom: 1.5rem;
  color: #b7b7b7;
  font-family: var(--black);
  text-transform: capitalize;
}
.rtl .our_doctors .portfolio-box h6 {
  font-size: 21px;
  font-family: var(--arReg);
}
.our_doctors .portfolio-box p {
  color: #b7b7b7;
  font-size: 14px;
  margin-bottom: 1rem;
  text-transform: capitalize;
}
.rtl .our_doctors .portfolio-box p {
  font-size: 21px;
}
.our_doctors .portfolio-box h3 {
  height: 44px;
}
.our_doctors .portfolio-box h6 {
  height: 44px;
}
.our_doctors .portfolio-box p {
  height: 42px;
}
.our_doctors .portfolio-box p i {
  margin-right: 0.5rem;
}
.our_doctors .portfolio-box a {
  display: block;
  width: max-content;
  padding: 0.6rem 2rem;
  color: #fff;
  font-size: 14px;
  font-family: var(--medium);
  text-transform: capitalize;
  background-color: var(--sub-color);
}
.rtl .our_doctors .portfolio-box a {
  font-size: 21px;
  font-family: var(--arBold);
}
.doctor_details .img_box {
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--main-color);
}
.doctor_details .img_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  transition: all 1s ease-in-out;
}
.doctor_details .img_box img:hover {
  transform: scale(1.2);
}
.doctor_details h3 {
  font-size: 40px;
  margin-bottom: 3rem;
  color: var(--main-color);
  font-family: var(--black);
}
.rtl .doctor_details h3 {
  font-size: 60px;
  font-family: var(--arReg);
}
.doctor_details ul.info {
  margin-bottom: 4rem;
}
.doctor_details ul.info li {
  display: flex;
  font-size: 16px;
  color: #242424;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.rtl .doctor_details ul.info li {
  font-size: 24px;
}
.doctor_details ul.info li i {
  position: relative;
  top: 5px;
  width: 20px;
  margin-right: 1rem;
}
.rtl .doctor_details ul.info li i {
  margin-left: 1rem;
}
.doctor_details .schedules_btn {
  display: block;
  width: max-content;
  color: var(--sub-color);
  margin-bottom: 2rem;
  cursor: pointer;
}
.doctor_details .schedules_btn i {
  margin-right: 1rem;
}
.doctor_details .schedules {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0px 3px 6px #00000029;
}
.doctor_details .schedules p {
  font-size: 16px;
  margin-bottom: 1rem;
}
.rtl .doctor_details .schedules p {
  font-size: 24px;
}
.doctor_details .schedules p:last-of-type {
  margin-bottom: 0;
}
.doctor_details .schedule_box {
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0px 3px 6px #00000029;
  margin-bottom: 20px;
}
.doctor_details .schedule_box h4,
.doctor_details .schedule_box a {
  color: #fff;
  font-size: 14px;
  padding: 0.85rem 0;
  text-transform: uppercase;
  background-color: var(--main-color);
}
.rtl .doctor_details .schedule_box h4,
.rtl .doctor_details .schedule_box a {
  font-size: 21px;
}
.doctor_details .schedule_box ul li {
  font-size: 14px;
  color: #242424;
}
.rtl .doctor_details .schedule_box ul li {
  font-size: 21px;
}
.doctor_details .schedule_box a {
  display: block;
}

/* custom checkbox */
.label_checkbox_container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  text-transform: capitalize;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.label_checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border: 1px solid var(--sub-color);
}
.label_checkbox_container input:checked ~ .checkmark {
  background-color: var(--main-color);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.label_checkbox_container input:checked ~ .checkmark:after {
  display: block;
}
.label_checkbox_container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/* departments */
header.departments .inner_page_image {
  background-image: url(../imgs/departments.png);
}

/* search page */
.search_head_section,
.search_results {
  padding: 4rem 0;
  position: relative;
}
.search_head_section {
  padding: 7rem 0.5rem 4rem;
}
.search_head_section h1 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 0;
  font-size: 40px;
}
.search_head_section h1 span {
  color: var(--sub-color);
}
.search_head_section::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: transparent
    linear-gradient(90deg, var(--main-color) 0%, var(--sub-color) 100%);
}
.search_results ul {
  list-style-type: disc;
}
.search_results ul li a {
  margin: 0.5rem 0;
  color: var(--main-color);
  font-size: 20px;
  display: block;
  word-break: break-all;
}
.search_results .empty_search {
  text-align: center;
  color: var(--main-color);
  font-family: var(--bold);
}
.rtl .search_results .empty_search {
  font-family: var(--arBold);
  font-size: 30px;
}
.search_results .empty_search h3 {
  margin-bottom: 0;
}

/* arabic */
body.rtl {
  direction: rtl;
  text-align: right;
  font-size: 1.5rem;
  font-family: "TanseekModern";
}
.rtl ul {
  padding-right: 0;
}
.rtl .mobile_menu {
  left: auto;
  right: -400px;
}
.rtl .mobile_menu .close_btn {
  right: auto;
  left: 1rem;
}
.rtl .about_details .pr-md-0,
.rtl .about_details .pl-md-0 {
  padding-left: 0;
  padding-right: 0;
}
.rtl .doctors_section:nth-of-type(even) {
  background-color: #f8f8f8;
  direction: ltr;
}
.rtl .checkmark {
  left: auto;
  right: 0;
}
.rtl .label_checkbox_container.ml-5 {
  margin-left: 0;
  margin-right: 3rem !important;
}
.rtl .our_blog_section .pl-lg-0 {
  padding-right: 0;
  padding-left: 0.5rem !important;
}
.rtl .our_blog_section .pr-lg-0 {
  padding-right: 0.5rem !important;
  padding-left: 0rem !important;
}
.rtl header.main .inner_box a:first-of-type {
  margin-right: 0;
  margin-left: 1rem;
}

.form_loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.5);
  font-size: 50px;
  color: #fff;
  display: none;
  z-index: 9;
}
.form_loading i {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
}

@media (max-width: 992px) {
  .contact_section_details {
    display: unset;
  }
  .contact_section_details div {
    width: 100%;
  }
}

.partners_section .arrows {
  position: unset;
}

.rtl .main_nav ul li a i.fa-angle-right {
  margin-left: 0;
  margin-right: 0.5rem;
  transform: rotate(180deg);
}
.rtl .arrows ul li {
  transform: rotate(180deg);
}
.rtl .arrows ul li:first-of-type {
  margin-left: 1rem;
  margin-right: 0;
}
.rtl .copyright span {
  margin-left: 0;
  margin: 0.5rem;
}
.rtl .our_values .inner_box .img_box {
  padding-right: 0;
  padding-left: 1rem;
  margin-right: 0;
  margin-left: 1rem;
  border-right: 0;
  border-left: 1px solid #ccc;
}
.rtl .departments_section h2 {
  text-align: right;
}

.rtl .why_us ul li:before,
.rtl .department_details li:before {
  left: auto;
  right: 0.25rem;
}
.rtl .next_posts .mr-3 {
  margin-right: 0 !important;
  margin-left: 1rem !important;
}
.rtl .next_posts .ml-3 {
  margin-left: 0 !important;
  margin-right: 1rem !important;
}
.rtl .next_posts a i {
  transform: rotate(180deg);
}
.rtl .next_posts .text-md-right {
  text-align: left !important;
}
.rtl .why_us ul.capacity li span {
  float: left;
}
.rtl .why_us ul.capacity li {
  margin-left: 0;
  margin-right: -0.25rem;
}
.rtl .main_nav .search_box {
  right: auto;
  left: 0;
}
.rtl .main_nav .search_box button.close_search {
  left: 0.75rem;
  right: auto;
}
.rtl .main_nav .search_box button {
  right: auto;
  left: 2rem;
}
.rtl .our_doctors .portfolio-box p i {
  margin-left: 0.5rem;
  margin-right: 0;
}
.rtl .why_us ul.capacity li span {
  margin-right: 0;
  margin-left: 1rem;
}
.featured-area-description {
	font-size: 1.2rem;
	font-weight: 600;
}
.rtl .featured-area-description {
	font-size: 1.5rem;
}
.rtl .form-control, .rtl input {
	font-family: var(--arReg);
	font-size: 1.5rem;
}
.vertical-align {
	display: flex;
	align-items: center;
}