/* fonts */
@font-face {
  font-family: "FontRegular";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "FontMedium";
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "FontBold";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "almarai";
  src: url("../fonts/Almarai-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "almarai-bold";
  src: url("../fonts/Almarai-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "cairo";
  src: url("../fonts/Cairo-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --main-color: #0d72b9;
  --sub-color: #49bb94;
  --regular: "FontRegular";
  --medium: "FontMedium";
  --bold: "FontBold";
  --arReg: "almarai";
  --arBold: "almarai-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;
}
.customBtn {
  border: none;
  font-size: 14px;
  border-radius: 25px;
  color: #fff !important;
  background: transparent
    linear-gradient(90deg, var(--main-color) 0%, var(--sub-color) 100%);
  cursor: pointer;
  padding: 0.5rem 2rem;
  width: max-content;
  display: block;
  text-transform: capitalize;
  font-family: var(--medium);
  transition: all 0.5s ease-in-out;
}
.rtl .customBtn {
  font-family: var(--arReg);
}
.customBtn:hover {
  background: transparent
    linear-gradient(90deg, var(--sub-color) 0%, var(--main-color) 100%);
}
.mainTitle {
  position: relative;
  text-align: center;
  font-family: var(--bold);
  text-transform: uppercase;
  color: var(--sub-color);
  font-size: 35px;
  display: block;
  width: max-content;
  margin: 0 auto 4rem;
}
.rtl .mainTitle {
  font-family: var(--arBold);
}
.mainTitle::before,
.mainTitle::after {
  content: "";
  position: absolute;
  top: 19px;
  height: 3px;
  width: 60px;
  border-radius: 3px;
  background-color: var(--main-color);
}
.mainTitle::before {
  left: -75px;
}
.mainTitle::after {
  right: -75px;
}
h1.title {
  font-size: 58px;
  color: var(--main-color);
  font-family: var(--bold);
  text-transform: uppercase;
}
.rtl h1.title {
  font-family: var(--arBold);
}
h3.subtitle {
  font-size: 32px;
  color: var(--sub-color);
  font-family: var(--medium);
  text-transform: uppercase;
}
.rtl h3.subtitle {
  font-family: var(--arReg);
}

/* main nav */
.main_nav {
  padding: 1rem 0;
}
.main_nav .container {
  position: relative;
}
.header_slider {
  overflow: hidden;
}
header.main .main_nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.main_nav .logo img {
  width: 100px;
}
.main_nav ul li {
  display: inline-block;
  padding: 0 1rem;
}
.main_nav ul li a {
  color: #232323;
  font-size: 16px;
  font-family: var(--medium);
  transition: all 0.3s ease-in-out;
}
.rtl .main_nav ul li a {
  font-family: var(--arReg);
}
.main_nav ul li.active a,
.main_nav ul li a:hover {
  color: var(--main-color);
}
.main_nav .btns {
  display: flex;
  align-items: center;
}
.main_nav .btns .customBtn {
  height: 41px;
  line-height: 23px;
}
.main_nav .btns .customBtn:first-of-type {
  background: none;
  margin-right: 1rem;
  color: #232323 !important;
  border: 2px solid #232323;
}
.main_nav .opening_menu {
  cursor: pointer;
  font-size: 24px;
  color: var(--main-color);
}
.mobile_menu {
  position: fixed;
  background-color: #fff;
  width: 300px;
  top: 0;
  left: -400px;
  height: 100%;
  z-index: 999;
  padding: 1rem;
}
.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 li a {
  padding: 1rem;
  color: #333;
  border-bottom: 1px solid #dbdbdb;
  display: block;
  font-weight: bold;
}
.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);
}

/* header */
header {
  position: relative;
}
header.main .inner_box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
}
header.main .inner_box.slide_1 {
  background-image: url(../imgs/slide-1.png);
}
header.main .inner_box.slide_2 {
  background-image: url(../imgs/slide-2.png);
}
header.main .inner_box.slide_3 {
  background-image: url(../imgs/slide-3.png);
}
header.main .inner_box.slide_4 {
  background-image: url(../imgs/slide-4.png);
}
header.main .inner_box.slide_5 {
  background-image: url(../imgs/slide-5.png);
}
header.main .inner_box h1 {
  font-size: 40px;
  margin-bottom: 2.5rem;
  color: var(--main-color);
  font-family: var(--bold);
  text-transform: uppercase;
}
.rtl header.main .inner_box h1 {
  font-family: var(--arBold);
}
header.main .inner_box h1 span {
  color: var(--sub-color);
}
header.main .inner_box a {
  padding: 0.85rem 2rem;
  display: inline-block;
}
header.main .inner_box a:first-of-type {
  margin-right: 1rem;
}
header .slick-dots {
  bottom: 25px;
  text-align: left;
  left: 10%;
}

/* about section */
.about_section {
  padding-top: 2rem;
}
.about_section h5 {
  font-size: 20px;
  font-family: var(--medium);
  color: var(--main-color);
  margin-top: 4rem;
}
.rtl .about_section h5 {
  font-family: var(--arReg);
}
.about_section h1 {
  font-size: 40px;
  color: var(--sub-color);
  font-family: var(--bold);
  margin-bottom: 2rem;
}
.rtl .about_section h1 {
  font-family: var(--arBold);
}
.about_section p {
  color: #a5a5a5;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.about_section a {
  padding: 0.85rem 2rem;
}
.about_section img {
  max-width: 100%;
}

/* about quote */
.about_quote {
  padding: 7rem 0;
  overflow: hidden;
  position: relative;
  background-color: #f8f8f8;
}
.about_quote:before {
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  top: 0;
  left: 0;
  background: transparent
    linear-gradient(90deg, var(--main-color) 0%, var(--sub-color) 100%);
}
.about_quote p {
  font-size: 18px;
  text-align: center;
  position: relative;
  color: var(--main-color);
}
.about_quote p:after,
.about_quote p:before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background-size: contain;
  background-position: center;
}
.about_quote p:after {
  top: -70px;
  left: -25px;
  background-image: url(../imgs/left_quote.svg);
}
.about_quote p:before {
  bottom: -70px;
  right: -25px;
  background-image: url(../imgs/right_quote.svg);
}

/* connecting section */
.connecting_section {
  height: 750px;
  overflow: hidden;
  position: relative;
  background: transparent
    linear-gradient(90deg, var(--main-color) 0%, var(--sub-color) 100%);
}
.connecting_section h1 {
  position: absolute;
  top: 36.25%;
  left: 50%;
  font-size: 126px;
  letter-spacing: 10px;
  font-family: var(--bold);
  text-transform: uppercase;
  transform: translateX(-50%);
}
.rtl .connecting_section h1 {
  font-family: var(--arBold);
}
.connecting_section h1.normal_text {
  z-index: 0;
  color: #fff;
}
.connecting_section h1.strock_text {
  color: white;
  z-index: 2;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;
}
@supports ((text-stroke: 2px black) or (-webkit-text-stroke: 2px black)) {
  .connecting_section h1.strock_text {
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    text-stroke: 2px #fff;
    text-shadow: none;
  }
}
.connecting_section .img_box {
  position: relative;
}
.connecting_section img {
  width: 100%;
}
.connecting_section .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  z-index: 2;
  padding-bottom: 4rem;
}
.connecting_section .content h3 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 1rem;
  font-family: var(--bold);
  text-transform: uppercase;
}
.rtl .connecting_section .content h3 {
  font-family: var(--arBold);
}
.connecting_section .content p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 3rem;
}
.connecting_section .content a {
  font-size: 14px;
  display: block;
  width: max-content;
  border-radius: 27px;
  padding: 0.75rem 2rem;
  background-color: #fff;
  color: var(--main-color);
  font-family: var(--bold);
}
.rtl .connecting_section .content a {
  font-family: var(--arBold);
}
.connecting_section .content span {
  color: #fff;
  display: block;
  font-size: 12px;
  margin-top: 1rem;
}

/* services section */
.services_section {
  padding: 4rem 0;
  background-color: #f8f8f8;
}
.services_section p {
  font-size: 16px;
  color: #232323;
  margin-bottom: 2rem;
}
.services_section a {
  display: block;
  margin-top: 3rem;
  padding: 0.75rem 2rem;
}

/* hire section */
.hire_section,
.vacancy_section {
  padding: 5rem 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-image: url(../imgs/hire.png);
}
.vacancy_section {
  background-image: url(../imgs/vacancy.png);
}
.hire_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%);
  z-index: 2;
}
.hire_section .overlay,
.vacancy_section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: transparent linear-gradient(89deg, #f8f8f8d9 0%, #ffffff00 100%);
}
.vacancy_section .overlay {
  background: transparent linear-gradient(271deg, #f8f8f8d9 0%, #ffffff00 100%);
}
.hire_section .container,
.vacancy_section .container {
  position: relative;
  z-index: 2;
}
.hire_section h1,
.vacancy_section h1 {
  font-size: 40px;
  color: var(--sub-color);
  font-family: var(--bold);
  text-transform: uppercase;
}
.rtl .hire_section h1,
.rtl .vacancy_section h1 {
  font-family: var(--arBold);
}
.hire_section h1 span,
.vacancy_section h1 span {
  display: block;
}
.hire_section p,
.vacancy_section p {
  width: 90%;
  font-size: 16px;
  color: #232323;
  margin: 3rem 0 2rem;
}
.vacancy_section p {
  margin-left: auto;
}
.hire_section a,
.vacancy_section a {
  padding: 0.75rem 2rem;
}
.vacancy_section a {
  margin-left: auto;
}

/* our blog section */
.our_blog_section {
  padding: 3rem 0 4rem;
  overflow: hidden;
}
.our_blog_section .main_box {
  height: 360px;
}
.our_blog_section .md_box {
  height: 180px;
  margin-bottom: 1.25rem;
}
.our_blog_section .sm_box {
  height: 160px;
}
.our_blog_section .box_details {
  position: relative;
  overflow: hidden;
}
.our_blog_section .box_details img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our_blog_section .box_details .content_box {
  position: absolute;
  bottom: 0;
  height: 30%;
  width: 100%;
  background-color: rgba(73, 187, 148, 0.85);
  display: flex;
  align-items: center;
  padding: 0.5rem 2rem;
}
.our_blog_section .box_details.md_box .content_box,
.our_blog_section .box_details.sm_box .content_box {
  height: 40%;
}
.our_blog_section .box_details .content_box span {
  color: #fff;
  font-size: 10px;
  margin-bottom: 0.25rem;
  display: block;
}
.our_blog_section .box_details .content_box h4 {
  margin-bottom: 0;
  color: #fff;
  font-size: 12px;
  font-family: var(--bold);
}
.rtl .our_blog_section .box_details .content_box h4 {
  font-family: var(--arBold);
}
.our_blog_section .box_details.main_box .content_box h4 {
  font-size: 14px;
}

/* testimonials */
.testimonials_section {
  padding: 4rem 0;
  overflow: hidden;
  background-color: #f8f8f8;
}
.testimonials_section .inner_box {
  padding: 2rem;
  position: relative;
  text-align: center;
  background-color: #f4f4f4;
}
.testimonials_section .inner_box:before {
  content: "";
  position: absolute;
  height: 8px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: transparent
    linear-gradient(90deg, var(--main-color) 0%, var(--sub-color) 100%);
}
.testimonials_section .inner_box .img_box {
  width: 105px;
  height: 105px;
  display: block;
  overflow: hidden;
  margin: 0 auto 2rem;
}
.testimonials_section .inner_box .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials_section .inner_box h4 {
  font-size: 20px;
  font-family: var(--medium);
  color: var(--main-color);
}
.rtl .testimonials_section .inner_box h4 {
  font-family: var(--arReg);
}
.testimonials_section .inner_box h5 {
  color: var(--sub-color);
  font-size: 16px;
  margin-bottom: 3rem;
}
.testimonials_section .inner_box p {
  color: #a5a5a5;
  font-size: 14px;
  margin-bottom: 1rem;
}

/* partners section */
.partners_section {
  padding: 4rem 0;
  overflow: hidden;
}
.testimonials_section .slick-dotted.slick-slider,
.partners_section .slick-dotted.slick-slider {
  margin-bottom: 4rem;
}
.testimonials_section .slick-dots,
.partners_section .slick-dots {
  bottom: -75px;
}
.testimonials_section .slick-slide > div,
.partners_section .slick-slide > div {
  padding: 0 15px;
}
.partners_section .img_box {
  padding: 0.5rem;
  height: 137px;
  border-radius: 10px;
  border: 1px solid var(--main-color);
}
.partners_section .img_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* sign up section */
.signUp_section {
  color: #fff;
  padding: 6rem 0;
  background: transparent
    linear-gradient(90deg, var(--main-color) 0%, var(--sub-color) 100%);
}
.signUp_section h1 {
  font-size: 50px;
  font-family: var(--bold);
  text-transform: uppercase;
}
.rtl .signUp_section h1 {
  font-family: var(--arBold);
}
.signUp_section h3 {
  font-size: 30px;
  text-transform: uppercase;
  font-family: var(--medium);
}
.rtl .signUp_section h3 {
  font-family: var(--arReg);
}
.signUp_section h3 span {
  display: block;
}
.signUp_section a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  font-size: 16px;
  border-radius: 25px;
  font-family: var(--medium);
  border: 2px solid #fff;
  color: #fff;
}
.rtl .signUp_section a {
  font-family: var(--arReg);
}
.signUp_section a.hire {
  color: var(--main-color);
  background-color: #fff;
  margin-bottom: 1rem;
}

/* footer */
footer {
  padding: 4rem 0;
  background-color: #f8f8f8;
}
footer .logo img {
  width: 175px;
}
footer .sec_col {
  padding-left: 3rem;
}
footer h4 {
  font-size: 18px;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-family: var(--bold);
  text-transform: uppercase;
}
.rtl footer h4 {
  font-family: var(--arBold);
}
footer ul li a {
  color: #a5a5a5;
  font-size: 14px;
  margin-bottom: 0.5rem;
  display: block;
  width: max-content;
}
footer h4 a {
  font-size: 16px;
  color: #a5a5a5 !important;
  font-family: var(--medium);
}
.rtl footer h4 a {
  font-family: var(--arReg);
}
footer .social li {
  display: inline-block;
}
footer .social li a {
  width: 28px;
  height: 28px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  background-color: var(--main-color);
}
footer h5 {
  font-size: 14px;
  margin-bottom: 1.5rem;
  color: var(--main-color);
  font-family: var(--medium);
}
.rtl footer h5 {
  font-family: var(--arReg);
}
footer input.form-control {
  height: 50px;
  font-size: 14px;
  padding: 0 1.5rem;
  border-radius: 25px;
  margin-bottom: 1rem;
  border: 2px solid var(--main-color);
}
footer input.form-control::placeholder {
  color: #a5a5a5;
}
footer input[type="submit"] {
  width: 100%;
  height: 50px;
}

/* copyright */
.copyright {
  color: #fff;
  padding: 2rem 0;
  font-size: 14px;
  text-align: center;
  background: transparent
    linear-gradient(90deg, var(--main-color) 0%, var(--sub-color) 100%);
}

#goTop {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  color: #fff;
  background-color: #777;
  z-index: 999;
  width: 45px;
  height: 45px;
  border-radius: 4px;
  cursor: pointer;
  display: none;
  text-align: center;
  line-height: 45px;
}

/* slick dots */
.slick-dots li button:before {
  opacity: 1;
  font-size: 18px;
  color: var(--sub-color);
}
.slick-dots li.slick-active button:before {
  color: var(--main-color);
}

/* contact page */
.contact_section {
  padding: 4.5rem 0;
  position: relative;
}
.contact_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%);
}
.contact_section h1 {
  font-size: 58px;
  color: var(--main-color);
  font-family: var(--bold);
  text-transform: uppercase;
}
.rtl .contact_section h1 {
  font-family: var(--arBold);
}
.contact_section h1 span {
  display: block;
}
.contact_section .details {
  margin: 4rem 0;
}
.contact_section .details li {
  font-size: 16px;
  margin-bottom: 0.5rem;
  color: #232323;
}
.contact_section .details li a {
  color: #232323;
}
.contact_section .details li span {
  display: inline-block;
  width: 140px;
}
.contact_section .social li {
  display: inline-block;
}
.contact_section .social li a {
  width: 28px;
  height: 28px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  background-color: var(--main-color);
}
.contact_section .contact-form p {
  color: #232323;
  margin-bottom: 1.5rem;
  font-family: var(--medium);
}
.rtl .contact_section .contact-form p {
  font-family: var(--arReg);
}
.contact_section .contact-form .form-control {
  height: 47px;
  font-size: 14px;
  border-radius: 23px;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--main-color);
}
.contact_section .contact-form .form-control::placeholder {
  color: #a5a5a5;
}
.contact_section .contact-form textarea.form-control {
  height: 120px;
  border-radius: 20px;
}
.contact_section .contact-form input[type="submit"] {
  width: 100%;
  height: 50px;
  font-family: var(--medium);
}
.rtl .contact_section .contact-form input[type="submit"] {
  font-family: var(--arReg);
}

/* map */
.map_section iframe {
  width: 100%;
  height: 600px;
  margin-bottom: -0.5rem;
}

/* about page */
.about_scrub {
  padding: 4rem 0;
}
.about_scrub p {
  font-size: 16px;
  color: #232323;
  margin-top: 3rem;
}
.about_details {
  overflow: hidden;
}
.about_details .inner_box {
  height: 100%;
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  background-color: #f8f8f8;
}
.about_details .inner_box .title {
  margin-bottom: 2rem;
}
.about_details .inner_box p {
  font-family: var(--medium);
}
.rtl .about_details .inner_box p {
  font-family: var(--arReg);
}
.about_details .img_box {
  height: 600px;
}
.about_details .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.from_ceo .img_box {
  text-align: center;
}
.from_ceo .inner_box {
  height: 100%;
  display: flex;
  align-items: center;
}
.from_ceo p {
  color: #232323;
  font-size: 16px;
  margin-top: 2rem;
}
.mission_section {
  padding: 4rem 0;
  position: relative;
}
.mission_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%);
}
.mission_section .title {
  margin-bottom: 3rem;
}
.mission_section p {
  color: #232323;
  margin-bottom: 1.25rem;
}
.mission_section p span {
  font-family: var(--bold);
}
.rtl .mission_section p span {
  font-family: var(--arBold);
}
.mission_section .inner_box {
  padding: 3rem 0;
}
.mission_section .inner_box h2 {
  font-size: 30px;
  margin-bottom: 2rem;
  color: var(--sub-color);
  font-family: var(--bold);
  text-transform: uppercase;
}
.rtl .mission_section .inner_box h2 {
  font-family: var(--arBold);
}
.mission_section .inner_box img {
  display: block;
  margin: 0 auto;
}

/* packages page */
.packages_section img {
  width: 100%;
}
.packages_section p {
  font-size: 16px;
  margin-top: 2rem;
}
.packages_prices {
  padding: 4rem 0;
  position: relative;
  background-color: #fafafa;
}
.packages_prices::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  top: 0;
  left: 0;
  background: transparent
    linear-gradient(90deg, var(--main-color) 0%, var(--sub-color) 100%);
}
.packages_prices .title {
  margin-bottom: 4rem;
}
.packages_prices .inner_box {
  padding: 2rem 1rem;
  position: relative;
  background: #f5f5f5;
  box-shadow: 0px 3px 6px #00000029;
  margin: 0 auto 4rem;
}
.packages_prices .inner_box h4 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--sub-color);
}
.packages_prices .inner_box h4 span {
  display: block;
  font-family: var(--bold);
}
.rtl .packages_prices .inner_box h4 span {
  font-family: var(--arBold);
}
.packages_prices .inner_box.mini_box {
  width: 85%;
  height: auto;
  padding: 3rem 1rem;
}
.packages_prices .inner_box.blue {
  background: #ebebeb;
}
.packages_prices .inner_box::before,
.packages_prices .inner_box::after {
  content: "";
  position: absolute;
  height: 15px;
  width: 100%;
  top: 0;
  left: 0;
  background: transparent
    linear-gradient(90deg, var(--main-color) 0%, var(--sub-color) 100%);
}
.packages_prices .inner_box::after {
  top: auto;
  bottom: 0;
  height: 10px;
}
.packages_prices .inner_box h2 {
  text-align: center;
  color: var(--sub-color);
  font-family: var(--bold);
  text-transform: capitalize;
}
.rtl .packages_prices .inner_box h2 {
  font-family: var(--arBold);
}
.packages_prices .inner_box.blue h2 {
  color: var(--main-color);
}
.packages_prices .inner_box .price {
  color: #fff;
  font-size: 17px;
  margin: 2rem auto;
  width: max-content;
  border-radius: 25px;
  padding: 0.35rem 2rem;
  background-color: var(--sub-color);
}
.packages_prices .inner_box.blue .price {
  background-color: var(--main-color);
}
.packages_prices .inner_box .price span {
  font-family: var(--bold);
}
.rtl .packages_prices .inner_box .price span {
  font-family: var(--arBold);
}
.packages_prices .inner_box ul {
  margin-bottom: 2rem;
}
.packages_prices .inner_box li {
  font-size: 14px;
  margin-bottom: 2rem;
  color: #232323;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}
.packages_prices .inner_box li i {
  position: relative;
  top: 5px;
  margin-right: 0.75rem;
  color: var(--sub-color);
}
.packages_prices .inner_box.blue li i {
  color: var(--main-color);
}
.packages_prices .inner_box.mini_box .label_checkbox_container {
  margin: 0 auto;
  width: max-content;
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  margin-left: -61.5px;
}
.packages_prices a {
  margin: 0 auto;
  padding: 0.75rem 3rem;
}

/* 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);
}

/* services page */
header.services,
header.blog {
  background-size: cover;
  background-position: right;
  background-image: url(../imgs/services_img.png);
}
header.blog {
  position: relative;
  background-image: url(../imgs/blog_back.png);
}
header.blog::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%);
}
header.services .header_image,
header.blog .header_image {
  height: 100%;
  display: flex;
  align-items: center;
}
header.services .header_image .title,
header.blog .header_image .title {
  margin-bottom: 4rem;
}
header.services .header_image p,
header.blog .header_image p {
  width: 40%;
  color: #232323;
  font-size: 16px;
  margin-bottom: 2rem;
  text-align: justify;
}
header.services .header_image p:last-of-type,
header.blog .header_image p:last-of-type {
  margin-bottom: 0;
}

/* colored service section */
.services_colored_section {
  color: #fff;
  padding: 6rem 0;
  background: transparent
    linear-gradient(90deg, var(--main-color) 0%, var(--sub-color) 100%);
}
.services_colored_section h1 {
  font-size: 50px;
  font-family: var(--bold);
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.rtl .services_colored_section h1 {
  font-family: var(--arBold);
}
.services_colored_section h3 {
  font-size: 30px;
  text-transform: uppercase;
  font-family: var(--medium);
}
.rtl .services_colored_section h3 {
  font-family: var(--arReg);
}
.services_colored_section p {
  font-size: 18px;
}
.services_colored_section p span {
  font-family: var(--bold);
}
.rtl .services_colored_section p span {
  font-family: var(--arBold);
}
.services_colored_section a {
  color: var(--main-color);
  background-color: #fff;
  border-radius: 30px;
  padding: 0.65rem 3rem;
  font-family: var(--medium);
  display: block;
  width: max-content;
}
.rtl .services_colored_section a {
  font-family: var(--arReg);
}
.our_services {
  padding: 5rem 0;
}
.our_services:nth-of-type(odd),
.doctors_section:nth-of-type(even) {
  background-color: #f8f8f8;
  direction: rtl;
}
.our_services h1 {
  font-size: 58px;
  text-transform: uppercase;
  color: var(--main-color);
  font-family: var(--bold);
}
.rtl .our_services h1 {
  font-family: var(--arBold);
}
.our_services p,
.doctors_section p {
  color: #232323;
  font-size: 16px;
  margin-top: 2rem;
}
.candidate_section {
  padding: 4rem 0;
  color: #232323;
}
.candidate_section h3 {
  font-size: 30px;
  position: relative;
}
.candidate_section h3:before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: -2rem;
  width: 4px;
  height: 70px;
  background-color: var(--sub-color);
}
.candidate_section h3 span {
  font-family: var(--bold);
  color: var(--main-color);
}
.rtl .candidate_section h3 span {
  font-family: var(--arBold);
}
.candidate_section p {
  font-size: 22px;
}

/* blog page */
.blog_section {
  padding: 3rem 0;
  background-color: #f8f8f8;
}
.blog_section.single {
  background-color: #fff;
}
.blog_section h1 {
  font-size: 30px;
  color: var(--main-color);
  font-family: var(--bold);
  text-transform: capitalize;
  margin-bottom: 3rem;
}
.rtl .blog_section h1 {
  font-family: var(--arBold);
}
.blog_section ul {
  text-align: center;
  margin-bottom: 0;
}
.blog_section ul:first-of-type {
  margin-bottom: 3rem;
}
.blog_section ul li {
  color: #232323;
  padding: 0 0.5rem;
  display: inline-block;
  font-family: var(--medium);
  cursor: pointer;
}
.rtl .blog_section ul li {
  font-family: var(--arReg);
}
.blog_section ul li:hover,
.blog_section ul li.active {
  color: var(--main-color);
}
.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;
}
.blog_section .content_box p {
  color: #6f6f6f;
  font-size: 16px;
  font-family: var(--bold);
  width: 80%;
  margin: 0 auto;
}
.rtl .blog_section .content_box p {
  font-family: var(--arBold);
}

.single_blog_head {
  padding: 3rem 0;
}
.single_blog_head h3 {
  font-size: 16px;
  margin-bottom: 1.5rem;
  color: var(--sub-color);
  font-family: var(--medium);
}
.rtl .single_blog_head h3 {
  font-family: var(--arReg);
}
.single_blog_head h1 {
  font-size: 30px;
  color: var(--main-color);
  font-family: var(--bold);
}
.rtl .single_blog_head h1 {
  font-family: var(--arBold);
}
.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);
}
.single_blog_content p {
  font-size: 16px;
  color: #232323;
  margin-bottom: 4rem;
}
.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(--main-color);
}
.single_blog_content .social li {
  color: #6f6f6f;
  font-size: 14px;
  display: inline-block;
  margin-right: 0.5rem;
}
.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(--main-color);
}
.next_posts {
  padding: 3rem 0;
  background: transparent
    linear-gradient(90deg, var(--main-color) 0%, var(--sub-color) 100%);
}
.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;
}

/* search page */
.search_head_section,
.search_results {
  padding: 4rem 0;
  position: relative;
}
.search_head_section h1 {
  text-align: center;
  color: var(--main-color);
}
.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);
}
.search_results .empty_search h3 {
  margin-bottom: 0;
}

/* arabic */
body.rtl {
  direction: rtl;
  text-align: right;
  font-family: 'cairo';
}
.rtl ul {
  padding-right: 0;
}
.rtl .main_nav .btns .customBtn:first-of-type {
  margin-left: 1rem;
  margin-right: 0;
}
.rtl header .slick-dots {
  left: auto;
  right: 10%;
  text-align: right;
}
.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 .our_services:nth-of-type(odd),
.rtl .doctors_section:nth-of-type(even) {
  background-color: #f8f8f8;
  direction: ltr;
}
.rtl .candidate_section h3:before {
  left: auto;
  right: -2rem;
}
.rtl .packages_prices .inner_box li i {
  margin-right: 0;
  margin-left: 0.75rem;
}
.rtl .packages_prices .inner_box.mini_box .label_checkbox_container {
  padding-left: 0;
  left: auto;
  right: 50%;
  margin-left: 0;
  margin-right: -61.5px;
}
.rtl .packages_prices .inner_box .label_checkbox_container {
  right: 0;
  left: 0;
  padding-right: 35px !important;
}
.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 .about_section h5, 
.rtl .about_section h1, 
.rtl .about_section p { 
  text-align: right !important;
}
.rtl header.main .inner_box a:first-of-type {
  margin-right: 0;
  margin-left: 1rem;
}




/* BEGIN: CUSTOM CSS by DEV */
.error_msg {
	font-size: 0.8rem;
}
header.about {
    background-size: cover;
    background-position: right;
    background-image: url(../imgs/about-bg-en.png);
}
header.about .header_image {
  height: 100%;
  display: flex;
  align-items: center;
}
header.about .header_image .title {
  margin-bottom: 4rem;
}
header.about .header_image p {
  width: 40%;
  color: #232323;
  font-size: 18px;
  margin-bottom: 2rem;
  text-align: justify;
}
header.about .header_image p:last-of-type {
  margin-bottom: 0;
}
.mission_section .inner_box {
	padding: 2rem 0;
}
.about_quote p {
  font-size: 22px;
  font-family: var(--bold);
}
.services_colored_section p {
  font-size: 20px;
  text-align: justify;
}
.services_section p {
    font-size: 18px;
}
.hire_section p, .vacancy_section p {
    font-size: 18px;
}

.about_section p {
  font-size: 18px;
}
.connecting_section .content p {
  font-size: 18px;
}
.about_scrub p {
  font-size: 18px;
}
.from_ceo p {
  font-size: 18px;
  text-align: justify;
}
.our_services p,
.doctors_section p {
  font-size: 18px;
  text-align: justify;
}
.about_section p {
  color: #232323;
}
.testimonials_section .inner_box p {
  color: #232323;
}
.about_quote p:after {
  top: -70px;
  left: -60px;
}
.about_quote p:before {
    right: -60px;
}
.single_blog_img {
	height:unset;
}
.about_details .img_box {
  height: unset;
}
.about_details .inner_box p, 
.mission_section p {
	font-size: 18px;
	font-family: inherit;
	text-align: justify;
}
header.services .header_image p,
header.blog .header_image p {
	font-size: 18px;
	text-align: justify;
}
.our_services:nth-of-type(odd) p, .doctors_section:nth-of-type(even) p {
	direction:ltr;
}

/*
.about_details .inner_box {
	padding: unset;
}
*/

.rtl .our_services:nth-of-type(odd) p, .doctors_section:nth-of-type(even) p {
	direction:rtl;
}
.rtl .about_quote p {
  font-size: 22px;
  font-family: var(--arBold);
}
.rtl header.about {
    background-size: cover;
    background-position: right;
    background-image: url(../imgs/about-bg-ar.png);
}
.rtl .about_quote p:before {
  bottom: 50px !important;
}
.rtl .about_quote p:after {
  top: 60px !important;
}
.rtl .next_posts .row {
	direction:ltr;
}
.rtl .connecting_section .row {
	direction:ltr;
}
.rtl .next_posts .row p {
	direction:rtl;
}
.rtl .main_nav .search_box {
	left: 0;
    right: unset;
}
.rtl .main_nav button.search_btn {
	left: 2rem;
    right: unset;
}
.rtl .main_nav button.close_search {
	left: 0.5rem;
    right: unset;
}
.rtl .about_quote p {
	font-size: 20px;
}
.rtl .services_section p {
    font-size: 20px;
}
.rtl .hire_section p, .vacancy_section p {
    font-size: 18px;
}
.rtl .hire_section {
    background-image: url(../imgs/hire-ar.png);
}
.rtl .vacancy_section {
    background-image: url(../imgs/vacancy-ar.png);
}
.rtl header.blog {
	background-image: url(../imgs/blog_back-ar.png);
}
.rtl header.services {
	background-image: url(../imgs/services_img-ar.png);
}
/* END: CUSTOM CSS by DEV */