@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
html::-webkit-scrollbar {
  width: 0.5rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: var(--dark-color);
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "Lato", serif;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%233E4B6E' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler:focus {
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

:root {
  --primary-color: #F23528;
  --secondary-color:#070202;
  --secondary-color-two: #F2F2F2 ;
  --dark-color: #1C1919;
  --dark-color-alt: #1A1A1A;
  --danger-color:#0D0D0D;
  --third-color: #666666;
  --fifth-color: #999999;
  --sixth-color: #999999;
  --light-color: #E6E6E6;
  --light-color-two:#F2F2F2;
  --light-border: #EBEBEB;
  --background-color: #600C06;
  --border-light-color: #CCCCCC;
  --bg-card-color:#EAFAF2;
  --aspect-ratio: 3 / 4;
}

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

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

.text-secondary-two {
  color: var(--secondary-color-two) !important;
}

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

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

.text-dark-two {
  color: var(--dark-color-alt) !important;
}

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

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

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

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

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-secondary-two {
  background-color: var(--secondary-color-two) !important;
}

.bg-third {
  background-color: var(--third-color) !important;
}

.bg-fourth {
  background-color: var(--fourth-color) !important;
}

.bg-fifth {
  background-color: var(--fifth-color) !important;
}

.bg-sixth {
  background-color: var(--sixth-color) !important;
}

.bg-light {
  background-color: var(--light-color) !important;
}

.bg-light-two {
  background-color: var(--light-color-two) !important;
}

.bg-card {
  background-color: var(--bg-card-color) !important;
}

.bg-dark {
  background-color: var(--dark-color) !important;
}

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

.border-light {
  border: 1px solid var(--light-border) !important;
}

.border-primary {
  border: 1px solid var(--primary-color) !important;
}

.border-light-two {
  border: 1px solid var(--border-light-color) !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.text-Neutral-700 {
  color: #333333 !important;
}

.lh-160 {
  line-height: 160% !important;
}

ol {
  list-style-type: lower-alpha;
}

.btn-primary {
  color: white !important;
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  transition: 0.5s linear !important;
}
.btn-primary:hover {
  color: var(--primary-color) !important;
  background-color: transparent !important;
  border-color: var(--primary-color) !important;
}

.btn-dark {
  color: white !important;
  background-color: var(--dark-color) !important;
  border-color: var(--dark-color) !important;
  transition: 0.5s linear !important;
}
.btn-dark:hover {
  color: var(--dark-color) !important;
  background-color: transparent !important;
  border-color: var(--dark-color) !important;
}

.btn-outline-primary {
  color: var(--primary-color) !important;
  background-color: transparent !important;
  border: 1px solid var(--primary-color) !important;
  transition: 0.5s linear !important;
}
.btn-outline-primary:hover {
  color: white !important;
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-outline-dark {
  color: var(--dark-color) !important;
  background-color: transparent !important;
  border: 1px solid var(--dark-color) !important;
  transition: 0.5s linear !important;
}

.btn-primary-two {
  color: white !important;
  background-color: var(--fourth-color) !important;
  border-color: var(--fourth-color) !important;
  transition: 0.5s linear !important;
}
.btn-primary-two:hover {
  color: var(--fourth-color) !important;
  background-color: transparent !important;
  border-color: var(--fourth-color) !important;
}

.btn-secondary {
  color: white !important;
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  transition: 0.5s linear !important;
}
.btn-secondary:hover {
  color: var(--secondary-color) !important;
  background-color: transparent !important;
  border-color: var(--secondary-color) !important;
}

.btn-outline-secondary {
  color: #C0180C !important;
  background-color: transparent !important;
  border: 1px solid var(--secondary-color) !important;
  transition: 0.5s linear !important;
}
.btn-outline-secondary:hover {
  color: white !important;
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.btn-white {
  color: #1E1E1E !important;
  background-color: white !important;
  border-color: white !important;
  transition: 0.5s linear !important;
}
.btn-white:hover {
  color: white !important;
  background-color: transparent !important;
  border-color: white !important;
}

.btn-outline-white {
  color: white !important;
  background-color: transparent !important;
  border: 1px solid white !important;
  transition: 0.5s linear !important;
}
.btn-outline-white:hover {
  color: var(--secondary-color) !important;
  background-color: white !important;
  border-color: white !important;
}

.btn-white {
  color: #1E1E1E !important;
  background-color: white !important;
  border-color: white !important;
  transition: 0.5s linear !important;
}
.btn-white:hover {
  color: white !important;
  background-color: transparent !important;
  border-color: white !important;
}

.btn-outline-gray {
  background-color: transparent;
  border: 1px solid #CCCCCC !important;
  color: black !important;
}

.btn-gray-transparent {
  background-color: rgba(255, 255, 255, 0.4509803922);
  border: 1px solid rgba(255, 255, 255, 0.4509803922) !important;
  color: white !important;
}

.contact-sec input:focus {
  border: 1px solid white !important;
  box-shadow: none !important;
  color: white !important;
}
.contact-sec ::placeholder {
  font-size: 13px !important;
  color: white !important;
}
.contact-sec textarea:focus {
  border: 1px solid white !important;
  box-shadow: none !important;
  color: white !important;
}

input:focus {
  border: 1px solid var(--dark-color) !important;
  box-shadow: none !important;
}

.form-select:focus {
  border: 1px solid var(--dark-color) !important;
  box-shadow: none !important;
}

.intl-tel-input {
  width: -webkit-fill-available !important;
}

textarea {
  resize: none !important;
}

.iti {
  width: -webkit-fill-available !important;
}

.iti__country-name {
  margin-right: 8px;
  color: var(--dark-color) !important;
}

.LanguageMenu {
  text-align: left;
}

.LanguageMenu span {
  font-size: 16px;
  margin-right: 10px;
}

.LanguageMenu svg {
  display: inline-block !important;
  vertical-align: middle;
  direction: ltr;
}

body.arabicVersion {
  font-family: "Almarai", serif;
}

.fs-ar {
  font-family: "Almarai", sans-serif;
}

body.arabicVersion .fs-ar {
  font-family: "Almarai", serif;
}

body.arabicVersion .ms-auto {
  margin-right: auto !important;
  margin-left: 0 !important;
}

body.arabicVersion .LanguageMenu {
  text-align: right;
  color: white;
}

body.arabicVersion .LanguageMenu span {
  font-size: 16px;
  margin-left: 10px;
}

body.arabicVersion .LanguageMenu svg {
  margin-right: 0;
  margin-left: 10px;
}

body.arabicVersion .arrow-ar {
  transform: scaleX(-1) !important;
}

body.arabicVersion .rotate-img {
  transform: scaleX(-1) !important;
}

.link-hover {
  transition: 0.4s all !important;
}

.link-hover:hover {
  transform: translateX(5px) !important;
}

.social-icons {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}
.social-icons:hover {
  background-color: white !important;
  color: var(--background-color) !important;
  transform: translateY(-5px);
}

.back-to-top {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 20px;
  right: 10px;
  background-color: var(--dark-color) !important;
  border: 1px solid var(--dark-color) !important;
  color: #FFF;
  border-radius: 50px;
  font-size: 20px !important;
  line-height: 0px !important;
  display: none;
  z-index: 2;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}
.back-to-top img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(162deg) brightness(101%) contrast(104%);
}
.back-to-top:hover {
  background-color: var(--dark-color) !important;
  color: #FFF !important;
  border: 1px solid var(--dark-color) !important;
}
body.arabicVersion .back-to-top {
  left: 10px;
  right: auto;
}

.btn-phone i {
  line-height: 1;
}

.whats-app {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 70px;
  background-color: var(--dark-color) !important;
  border: 1px solid var(--dark-color) !important;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 23px;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  right: 10px;
}
.whats-app:hover {
  background-color: var(--secondary-color);
  color: #FFF;
}
body.arabicVersion .whats-app {
  left: 10px;
  right: auto;
}

.accordion-button {
  background: var(--light-color-two);
  box-shadow: none !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  color: #1E1E1E !important;
  text-align: start;
  display: flex;
  align-items: flex-start;
}

.accordion-button:not(.collapsed) {
  border-radius: 10px !important;
  box-shadow: none !important;
}

.accordion-item {
  border-radius: 10px !important;
  background: var(--light-color-two);
  color: #333333 !important;
}

.accordion-button::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='32'%20height='32'%20viewBox='0%200%2032%2032'%20fill='none'%3E%3Crect%20width='32'%20height='32'%20rx='16'%20fill='%23999999'/%3E%3Cpath%20d='M10%2014L15.2929%2019.2929C15.6262%2019.6262%2015.7929%2019.7929%2016%2019.7929C16.2071%2019.7929%2016.3738%2019.6262%2016.7071%2019.2929L22%2014'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
}

.accordion-button:not(.collapsed)::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='32'%20height='32'%20viewBox='0%200%2032%2032'%20fill='none'%3E%3Crect%20width='32'%20height='32'%20rx='16'%20fill='%23999999'/%3E%3Cpath%20d='M10%2018L15.2929%2012.7071C15.6262%2012.3738%2015.7929%2012.2071%2016%2012.2071C16.2071%2012.2071%2016.3738%2012.3738%2016.7071%2012.7071L22%2018'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  transform: rotate(0deg) !important;
}

.accordion-button::after {
  margin-left: auto;
}
body.arabicVersion .accordion-button::after {
  margin-right: auto !important;
  margin-left: 0;
}

.hover-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

@media (min-width: 375px) and (max-width: 991px) {
  .offcanvas {
    padding: 0;
  }
  .section-background {
    background-size: cover !important;
  }
  .offcanvas-body {
    padding: 0;
  }
  .offcanvas-body .navbar-nav {
    margin: 0;
  }
  .offcanvas-header {
    display: flex;
    align-items: end;
    justify-content: end;
    background-color: var(--dark-color) !important;
  }
  .offcanvas-header .btn-close {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: contain;
    width: 5px;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
  }
  .offcanvas-body .nav-link {
    color: white !important;
    border-bottom: 1px solid #fff;
    padding: 10px 15px;
    margin: 0;
  }
  .offcanvas-body .nav-link:hover {
    background-color: white !important;
    color: var(--dark-color) !important;
  }
  .dropdown-menu {
    background-color: var(--dark-color);
    color: white !important;
    margin: 0;
  }
  .dropdown-menu li a {
    color: white !important;
  }
  .dropdown-menu li a:hover {
    background-color: var(--dark-color);
    color: white !important;
  }
  .dropdown-divider {
    color: white !important;
    border-bottom: 1px solid #fff;
  }
  .offcanvas-body {
    background-color: var(--dark-color);
    color: white !important;
  }
  .offcanvas-body .text-primary {
    color: white !important;
    border-bottom: 1px solid #fff;
  }
  .offcanvas-body .btn-outline-primary {
    color: white !important;
    border: 1px solid white !important;
  }
  .offcanvas-body .btn-outline-primary:hover {
    color: var(--primary-color) !important;
  }
  .offcanvas-body .text-secondary {
    color: white !important;
  }
}
@media (min-width: 1100px) {
  .nav-hover-link::after {
    content: "";
    height: 2px;
    width: 0%;
    background-color: var(--dark-color) !important;
    transition: 0.5s;
    margin: auto;
    display: block;
  }
  .nav-hover-link:hover::after {
    width: 100%;
    color: black;
  }
}
.btn-custom {
  width: auto;
  display: inline-block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .card-not-hover:hover {
    transform: translateY(0px);
    box-shadow: none !important;
  }
  .position-resp {
    position: static !important;
  }
  .position-resp .para-responsive {
    font-size: 14px !important;
    font-weight: 500 !important;
  }
  .position-resp .heading-responsive {
    font-size: 16px !important;
    font-weight: 600 !important;
  }
  .position-resp .text-black-responsive {
    color: #1E1E1E !important;
  }
  .text-resp {
    font-size: 10px !important;
  }
  .h6-resp {
    font-size: 12px !important;
    white-space: nowrap;
    font-weight: 500;
  }
  .h1-resp {
    font-size: 20px !important;
  }
}
.custom-border {
  position: relative;
  display: inline-block;
}

.custom-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 28px;
  transform: translateX(-50%);
  width: 50px !important;
  height: 1px;
  background-color: #FDD017;
}

.fs-4-sm {
  font-size: 1.4rem;
}

@media (min-width: 768px) and (max-width: 991px) {
  .text-resp .fs-4-sm {
    font-size: 1rem;
  }
  .text-resp p {
    font-size: 12px;
  }
  .para-responsive {
    font-size: 10px !important;
  }
  .heading-responsive {
    font-size: 12px !important;
  }
}
@media (min-width: 300px) and (max-width: 500px) {
  .header-responsive h1 {
    font-size: 13px !important;
  }
  .header-responsive h5 {
    font-size: 12px !important;
  }
  .header-responsive .btn-resp {
    font-size: 13px !important;
  }
  .header-responsive-services h3 {
    font-size: 13px !important;
  }
  .header-responsive-services p {
    font-size: 12px !important;
  }
  .header-responsive-services .btn-resp {
    font-size: 10px !important;
  }
  .header-responsive-services svg {
    width: 22px !important;
    height: 22px !important;
  }
  .header-fs-sm span {
    font-size: 9px !important;
  }
  .header-fs-sm svg {
    width: 16px;
    height: 16px;
  }
}
.image-container {
  display: block;
  overflow: hidden;
  border-radius: 0.7rem;
  position: relative;
}

.image-container img {
  transition: transform 0.5s ease-in-out;
  width: 100%;
  display: block;
  -webkit-mask-image: radial-gradient(circle, rgb(0, 0, 0) 100%, rgba(0, 0, 0, 0) 0);
  mask-image: radial-gradient(circle, rgb(0, 0, 0) 100%, rgba(0, 0, 0, 0) 0);
}

.image-container:hover img {
  transform: scale(1.06);
}

.section-background {
  position: relative;
  background-size: 100% 100% !important;
  background-position: center;
  min-height: 650px;
}

@media (max-width: 768px) {
  .section-background {
    background-size: cover !important;
  }
}
.hero-sec {
  min-height: 600px;
}

.section-background {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: start;
  color: #fff;
}

.hover-card {
  transition: background-color 0.8s ease-in-out;
}

.hover-card:hover {
  transition: 0.8s all;
  background-color: var(--primary-color);
}
.hover-card:hover .card-body h4 {
  color: white !important;
}
.hover-card:hover .card-body p {
  color: white !important;
}

.home-img img {
  animation: animate 3s ease-in-out infinite;
}

@keyframes animate {
  0% {
    transform: translate(-11px, 0);
  }
  50% {
    transform: translate(0px, -11px);
  }
  100% {
    transform: translate(-11px, 0);
  }
}
.program-card {
  transition: all 0.3s ease-in-out;
}

.program-card:hover {
  background-color: #0d6efd;
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.special-slider .slick-slide {
  transition: opacity 0.5s, transform 0.5s;
  transform: scale(0.9);
}

.special-slider-img-h {
  height: 280px !important;
  width: 100%;
}

.Categories-slider-nav {
  position: relative;
  top: -20px;
  text-align: right;
}
.Categories-slider-nav .prev, .Categories-slider-nav .next {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 36px;
  border-radius: 50%;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s linear;
}
.Categories-slider-nav .next {
  background-color: transparent !important;
}
.Categories-slider-nav .prev {
  background-color: transparent !important;
}

.room-sec .small-title {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
}
.room-sec .image-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  border-radius: 0 0 15px 15px;
  pointer-events: none;
  z-index: 1;
}
.room-sec .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  padding: 15px;
  border-radius: 0 0 10px 10px;
  z-index: 2;
}

.circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: var(--dark-color) !important;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 35px;
}

.what-we-offer .card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.what-we-offer .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.fancybox-img {
  max-height: 200px;
  margin: 0 auto;
}

.toggle-password {
  float: right;
  cursor: pointer;
  margin-right: 10px;
  margin-top: -25px;
  color: #666666;
}
body.arabicVersion .toggle-password {
  margin-left: 10px;
  float: left;
}

@media (min-width: 768px) {
  .custom-modal-size {
    max-width: 700px;
  }
}
.appointment-form input[type=radio]:checked ~ .appointment-lable {
  box-shadow: 0px 0px 0px 1px #1E1E1E !important;
}

.appointment-form input[type=radio]:checked + .appointment-lable svg path {
  fill: #1E1E1E;
}

.appointment-form-two input[type=radio]:checked + .appointment-lable svg path {
  fill: none;
}

.appointment-form input[type=radio]:checked + .appointment-lable span {
  color: #1E1E1E !important;
}

.appointment-form input[type=radio] {
  display: none;
}

.text-resend {
  color: #E11D27;
}

.otp-input input:focus {
  border: 1px solid #F3F2F2 !important;
  box-shadow: none !important;
  color: #CCCCCC !important;
  background-color: #F3F2F2 !important;
}

.login-height {
  height: 120vh !important;
}

.profile-tabs .nav-link.active {
  background-color: white !important;
  color: var(--dark-color) !important;
}

.upload-area {
  border-radius: 5px;
  padding: 50px;
  background-color: #F3F2F2;
  transition: border-color 0.3s ease;
  cursor: pointer;
}

.upload-area:hover {
  border-color: #F9A59F !important;
}

.text-gray {
  color: #9F9393 !important;
}

input[type=file] {
  display: none;
}

.dash {
  border: 2px dashed #ced4da;
  border-radius: 5px;
  padding: 15px;
}

.cursor-pointer {
  cursor: pointer !important;
}

.form-check-input:checked {
  background-color: var(--dark-color) !important;
  border-color: var(--dark-color) !important;
}

.img-product-slider img {
  width: 100%;
  display: block;
  background-color: var(--ThirdColor);
  cursor: pointer !important;
}
.img-product-slider .img-display {
  overflow: hidden;
}
.img-product-slider .img-showcase {
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
}
.img-product-slider .img-showcase img {
  min-width: 100%;
}
.img-product-slider .img-select {
  padding-block: 10px;
  display: flex;
}
.img-product-slider .img-item:nth-child(1),
.img-product-slider .img-item:nth-child(2),
.img-product-slider .img-item:nth-child(3) {
  margin: 0;
}
.img-product-slider .img-item:hover {
  opacity: 0.8;
}

.hr {
  border: 1px solid #E6E6E6 !important;
}

.box {
  border-radius: 1rem 1rem 0 0 !important;
}

.input-wrapper {
  width: 150px;
  height: 45px;
  display: flex;
  justify-content: center;
}

.input-wrapper-product {
  width: 100px;
  height: 45px;
  display: flex;
  justify-content: center;
}

.input-wrapper * {
  border: none;
  width: 50px;
  flex: 1;
}

.input-wrapper button {
  cursor: pointer;
}

.gallery-tabs .nav-pills .nav-link.active {
  background-color: transparent !important;
  color: var(--primary-color) !important;
}

.gallery-image-container {
  height: 300px;
}

.gallery-image-container img {
  height: 100%;
  object-fit: cover;
}

@media (min-width: 988px) and (max-width: 1200px) {
  .fs-sm {
    font-size: 10px !important;
    white-space: nowrap;
  }
  .fs-sm-two {
    white-space: nowrap;
    font-size: 11.5px !important;
  }
  .user-icon {
    width: 20px;
  }
}
@media (min-width: 1200px) {
  .fs-sm {
    font-size: 13px !important;
    white-space: nowrap;
  }
  .fs-sm-two {
    white-space: nowrap;
    font-size: 11.5px !important;
  }
}
.dropdown-icon {
  vertical-align: -0.225em;
}

.z-1000 {
  z-index: 1000 !important;
}

.loader-bg {
  position: fixed;
  overflow: hidden;
  z-index: 1111111;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader img {
  height: 70px;
  width: auto;
  animation: scalePulse 1.5s ease-in-out infinite;
}

/* Animation */
@keyframes scalePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.img-height {
  height: 350px;
  width: 100%;
}

.img-press {
  height: 250px;
  width: 100%;
}

.hero-section-text .hero-heading span {
  color: inherit;
}
.hero-section-text .hero-heading span.colored {
  color: #6C6060 !important;
}

.border-black {
  border: 1px solid black !important;
}

.icon-wrapper {
  position: relative;
}

.icon-overlay {
  left: -44px;
  z-index: 2;
}
body.arabicVersion .icon-overlay {
  right: -44px;
  left: unset;
}

.Reviews-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  margin-top: 40px;
  padding: 0;
  list-style-type: none !important;
}
.Reviews-slider .slick-dots li {
  margin: 0 5px;
}
.Reviews-slider .slick-dots li button {
  width: 50px;
  height: 5px;
  border-radius: 12px;
  background-color: rgba(103, 103, 103, 0.2509803922);
  border: none;
  transition: background-color 0.3s ease;
  padding: 0;
}
.Reviews-slider .slick-dots li.slick-active button {
  background-color: #676767;
}
.Reviews-slider .slick-dots button {
  text-indent: -9999px;
  background-color: #000;
}

.text-white-two {
  color: #F2F2F2 !important;
}

.dropdown-item:active,
.dropdown-item:focus {
  background-color: transparent !important;
  color: inherit !important;
}

.clinic-img-h {
  width: 100%;
  height: 180px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: url(../images/play-btn.svg) no-repeat center center;
  background-size: contain;
  border: none;
  cursor: pointer;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-image: url(../images/Frame\ 18.png);
  transition: background-color 0.3s ease-in-out;
}

.video-img-h {
  height: 350px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

.video-img-h img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-img {
  height: 300px;
  width: 100%;
}

.end-img {
  right: 0;
  transform: translateY(-20%);
}

body.arabicVersion .end-img {
  right: unset;
  left: 0;
  transform: translateY(-20%) scaleX(-1);
}

.experience-sec .timeline {
  position: relative;
  padding: 3rem 0;
}
.experience-sec .timeline.timeline-two::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: white;
  transform: translateX(-50%);
  z-index: 1;
}
.experience-sec .timeline-step {
  position: relative;
  margin-bottom: 4rem;
}
.experience-sec .timeline-step .dot {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.experience-sec .timeline-step.left .dot {
  right: calc(43% - 40px);
}
.experience-sec .timeline-step.right .dot {
  left: calc(50% + 40px);
}
.experience-sec .timeline-step .arrow-line {
  position: absolute;
  top: 50%;
  width: 80px;
  height: 2px;
  background-color: white;
  z-index: 1;
  transform: translateY(-50%);
}
.experience-sec .timeline-step.left .arrow-line {
  right: 43%;
  transform: translate(-100%, -50%);
}
body.arabicVersion .experience-sec .timeline-step.left .arrow-line {
  right: 36%;
}
.experience-sec .timeline-step.right .arrow-line {
  left: 50%;
  transform: translateY(-50%);
}
body.arabicVersion .experience-sec .timeline-step.right .arrow-line {
  left: 43%;
}
.experience-sec .timeline-step.left .dot {
  top: 50%;
  left: calc(43% - 20px);
  transform: translate(50%, -50%);
}
body.arabicVersion .experience-sec .timeline-step.left .dot {
  transform: translate(-150%, -50%);
}
.experience-sec .timeline-step.right .dot {
  top: 50%;
  left: calc(50% + 83px);
  transform: translate(-100%, -50%);
}
body.arabicVersion .experience-sec .timeline-step.right .dot {
  right: 55%;
}
.experience-sec .timeline-step .step-number {
  font-size: 34px;
  font-weight: bold;
  position: absolute;
  top: -12px;
}
.experience-sec .timeline-step.right .dot {
  top: 50%;
  right: 50%;
  transform: translate(-100%, -50%);
}
.experience-sec .timeline-step.right .dot {
  left: calc(50% + 83px);
}
.experience-sec .timeline-step .content {
  padding: 1rem;
}
.experience-sec .timeline-step img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .experience-sec .timeline.timeline-two::before {
    left: 10px;
    width: 2px;
    background-color: #ccc;
  }
  .experience-sec body.arabicVersion.timeline.timeline-two::before {
    left: unset;
    right: 10px !important;
    width: 2px;
    background-color: #ccc;
  }
  .experience-sec .timeline-step .content {
    position: relative;
    z-index: 2;
  }
}
@media (max-width: 768px) {
  .experience-sec .timeline-step.right .dot {
    display: none;
  }
  .experience-sec .timeline-step.left .dot {
    display: none;
  }
  .experience-sec .timeline::before {
    left: 8px;
  }
  .experience-sec .timeline-step .dot {
    left: 8px;
  }
  .experience-sec .timeline-step.left .arrow-line,
  .experience-sec .timeline-step.right .arrow-line {
    display: none;
  }
  .experience-sec .timeline-step.left .step-number,
  .experience-sec .timeline-step.right .step-number {
    left: 30px;
  }
  .experience-sec .timeline-step.left .content,
  .experience-sec .timeline-step.right .content {
    text-align: start;
    padding-left: 2rem;
  }
}
.experience-sec .timeline .start-dot,
.experience-sec .timeline .end-dot {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
  transform: translateX(-50%);
}
.experience-sec .timeline .start-dot {
  top: 0;
  transform: translate(-50%, -50%);
}
.experience-sec .timeline .end-dot {
  bottom: 0;
  transform: translate(-50%, 50%);
}
@media (min-width: 768px) and (max-width: 1300px) {
  .experience-sec .dot,
  .experience-sec .arrow-line {
    display: none !important;
  }
}

.timeline-white::before,
.timeline-white .dot,
.timeline-white .arrow-line,
.timeline-white .start-dot,
.timeline-white .end-dot {
  background-color: white !important;
}

.timeline-black::before,
.timeline-black .dot,
.timeline-black .arrow-line,
.timeline-black .start-dot,
.timeline-black .end-dot {
  background-color: black !important;
}

.timeline-home {
  /* Top Items */
  /* Bottom Items */
  /* Responsive */
}
.timeline-home .timeline {
  position: relative;
  padding: 100px 0;
}
.timeline-home .timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #000;
  z-index: 1;
}
.timeline-home .timeline-container {
  position: relative;
  display: flex;
  justify-content: flex-start;
}
.timeline-home .timeline-item {
  flex: 1 1 150px;
  min-width: 80px;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 2;
}
.timeline-home .timeline-item .dot {
  width: 16px;
  height: 16px;
  background-color: #000;
  border-radius: 50%;
  margin: 0px 0;
}
.timeline-home .timeline-item .line {
  width: 2px;
  height: 25px;
  background-color: #000;
}
.timeline-home .timeline-item.top {
  transform: translateY(-50%);
}
.timeline-home .text {
  white-space: nowrap;
  font-size: 12px;
}
.timeline-home .timeline-item.bottom {
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .timeline-home .timeline {
    padding: 20px 0;
  }
  .timeline-home .timeline::before {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
  }
  .timeline-home .timeline-container {
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .timeline-home .timeline-item {
    width: 100%;
    max-width: 400px;
    flex-direction: row;
    text-align: left;
    transform: none !important;
    margin: 20px 0;
    position: relative;
    padding: 0;
    justify-content: flex-start;
  }
  .timeline-home .timeline-item .dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 3;
    flex-shrink: 0;
  }
  .timeline-home .timeline-item .line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
    background-color: #000;
    transform: translateX(-50%);
    z-index: 1;
  }
  .timeline-home .timeline-item:nth-child(odd) {
    justify-content: flex-end;
    /* padding-right: 30px; */
    padding-left: 0;
  }
  .timeline-home .timeline-item:nth-child(odd) .text {
    margin-right: 10px;
    margin-left: 10px;
    text-align: right;
    order: 2;
    max-width: 45%;
    white-space: wrap !important;
  }
  .timeline-home .timeline-item:nth-child(even) {
    justify-content: flex-start;
    /* padding-left: 30px; */
    padding-right: 0;
  }
  .timeline-home .timeline-item:nth-child(even) .text {
    margin-left: 0;
    margin-right: 10px;
    text-align: left;
    order: 1;
    max-width: 45%;
    white-space: wrap !important;
  }
  .timeline-home .text {
    white-space: wrap !important;
    font-size: 16px;
  }
}

.custom-rounded {
  border-radius: 0 130px 0 130px;
}

.bg-white-gray {
  background-color: rgba(230, 230, 230, 0.2);
}

.bg-time {
  background-color: rgba(240, 237, 229, 0.1490196078);
}

.left-97 {
  left: -97px;
}
body.arabicVersion .left-97 {
  left: unset;
  right: -80px;
  transform: scaleX(-1) !important;
}

.right-30 {
  right: -31px;
}
body.arabicVersion .right-30 {
  left: -50px;
  right: unset;
  transform: scaleX(-1) !important;
}

/* Carousel item height */
.c-item {
  height: 600px;
}

/* Full height video background with dark overlay */
.c-img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

/* Carousel indicators custom style */
.carousel-indicators {
  color: #070202 !important;
  border-radius: 10px !important;
}

.carousel-indicators .active {
  color: #070202 !important;
  background-color: #070202 !important;
  border-radius: 10px !important;
}

.carousel-indicators:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Make caption vertically centered */
.carousel-caption {
  top: 0;
  bottom: 0;
}
