* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
*:focus {
  outline: none !important;
}

:root {
  --primaryColor: rgba(180, 82, 237, 1);
  --SecondaryColor: rgba(30, 201, 208, 1);
  --bs-secondary-rgb: 239, 239, 239;
  --color-primary-hover: linear-gradient(45deg, #C944F7, #06DCC2);
  --linear-gradient: linear-gradient(45deg, rgba(30, 201, 208, 1), rgba(180, 82, 237, 1));
  --mainColor1: #F6DFA2;
  --mainColor2: rgb(0, 0, 0);
  --mainColor3: #31ba44;
  --mainColor4: #ffffff;
  --mainColor5: #f2e7d8;
}

.loading-screen {
  z-index: 99999;
  display: flex;
}
.loading-screen img {
  width: 250px;
}

body {
  font-size: 16px;
  color: var(--mainColor4);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  background-color: #181818;
}

html[lang=ar] body {
  font-family: "Cairo", sans-serif;
}

.bg-gradient-color {
  background: var(--linear-gradient);
}

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

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

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

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

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

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

p {
  margin-bottom: 0px;
  max-width: 95%;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
}

h4 {
  font-size: 24px;
}
h4 span {
  color: var(--primaryColor);
}

h5 {
  font-size: 18px;
  line-height: 100%;
  font-weight: 600;
}

h6 {
  font-weight: bold;
}

a {
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

footer {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--mainColor4) !important;
  overflow: hidden;
}
footer h4 {
  font-size: 20px;
  line-height: 36px;
}
footer p, footer span, footer a {
  color: var(--mainColor4);
}
footer img {
  width: 170px;
}

.layer {
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
}

.floatwhatsapp,
.back-to-top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 25px;
  text-align: center;
  color: var(--mainColor4);
  position: fixed;
  right: 4%;
  text-decoration: none;
  margin-bottom: 20px;
  z-index: 100;
}

.floatwhatsapp {
  background: var(--linear-gradient);
  bottom: 10px;
  display: flex;
  transition: transform 0.2s ease-in-out;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-play-state: paused;
}
.floatwhatsapp:hover {
  transform: translateY(-3px);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(119, 13, 140, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 5px;
  border: 5px solid var(--primaryColor);
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse-border {
  0% {
    padding: 20px;
    opacity: 0.75;
  }
  75% {
    padding: 30px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.back-to-top {
  background: var(--linear-gradient);
  border: 2px solid var(--linear-gradient);
  display: none;
  bottom: 100px;
  color: var(--mainColor4);
  z-index: 111;
  transition: transform 0.2s ease-in-out;
}
.back-to-top:hover {
  transform: translateY(-3px);
}

.container-reverse-store .row:nth-child(even) {
  flex-direction: row-reverse;
}

.img-container img {
  transition: all 0.8s ease;
  width: 100%;
}
.img-container img:hover {
  transform: scale(1.07);
  transform-origin: 50% 50%;
  cursor: pointer;
}

.first-img {
  width: 90%;
  height: 100%;
}

.second-img {
  width: 50%;
  height: 70%;
  overflow: hidden;
  transform: translateX(10%);
  border: 8px solid white;
}

.first-img img,
.second-img {
  border-radius: 200px 200px 0px 0px;
}

.icon.step {
  background: var(--linear-gradient) !important;
  position: relative;
}
.icon.step::after {
  position: absolute;
  content: "";
  width: 2px;
  border: 1px #8E8E93 dashed;
  display: inline-flex;
  flex-direction: column;
  bottom: 0px;
  z-index: -1;
  height: 100px;
  top: 100%;
}
.icon.step:last-child:after {
  content: unset;
}

ul:has(.step) li:last-child .icon.step::after {
  content: unset;
}

.img-card {
  height: 300px;
  overflow: hidden;
}
.img-card img {
  transition: all 0.8s ease;
}
.img-card:hover {
  cursor: pointer;
}
.img-card:hover img {
  transform: scale(1.1);
  transform-origin: 50% 50%;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  box-shadow: unset !important;
}

html[lang=ar] .accordion-button::after {
  margin-right: auto;
  margin-left: 0px;
}

.download .img-container {
  width: 48%;
}

html[lang=ar] .arrow {
  transform: scale(-1);
}

.form-bg {
  background-image: url("../imgs/home/form-bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.form-control {
  font-size: 14px;
}
.form-control::-moz-placeholder {
  color: var(--mainColor4);
  font-size: 14px;
}
.form-control::placeholder {
  color: var(--mainColor4);
  font-size: 14px;
}
.form-control:focus {
  border-color: var(--SecondaryColor) !important;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(248, 71, 1, 0.034) !important;
  background-color: rgba(248, 71, 1, 0.034);
}

.btn {
  transition: 0.7s !important;
  border-radius: 8px;
}

button.btn {
  transition: 0.8s !important;
}
button.btn:hover {
  opacity: 70%;
  cursor: pointer;
  color: var(--mainColor2) !important;
}

button.download-btn:hover {
  background-color: var(--SecondaryColor) !important;
  cursor: pointer;
  color: var(--mainColor2) !important;
}

.btn:not(.download-btn, .bg-gradient-color) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: color 0.3s ease, transform 0.5s ease;
}
.btn:not(.download-btn, .bg-gradient-color)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--linear-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn:not(.download-btn, .bg-gradient-color):hover {
  cursor: pointer;
  color: var(--mainColor4) !important;
  transform: translateY(-2px);
}
.btn:not(.download-btn, .bg-gradient-color):hover::before {
  opacity: 1;
}

.btn:hover {
  background: var(--color-primary-hover) !important;
  transform: translateY(-3px);
}

.header-div {
  height: 580px;
}

.welcome-text {
  display: none;
}

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

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

.fs-16 {
  font-size: 16px;
}

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

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

.fs-24 {
  font-size: 24px;
}

.fs-28 {
  font-size: 28px;
}

.fs-32 {
  font-size: 32px;
}

.fs-36 {
  font-size: 36px;
}

.fs-40 {
  font-size: 40px;
}

.fs-45 {
  font-size: 45px;
}

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

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

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

.h4-home {
  font-size: 42px;
}

.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.bg-white {
  background-color: white;
}

.bg-light {
  background-color: #f8f9fa;
}

.text-muted {
  color: #6c757d !important;
}

.text-decoration-underline {
  text-decoration: underline;
}

ul {
  list-style: none;
  list-style-position: inside;
}

html[lang=ar] .text-md-start {
  text-align: right !important;
}
html[lang=ar] .text-md-end {
  text-align: left !important;
}

.object-fit-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.img-container {
  height: 370px;
}

.social li {
  list-style: none;
}

.social li a {
  opacity: 100% !important;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  margin: 0 7px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social li a .icon {
  color: transparent;
  background: var(--linear-gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

.social li a::before {
  content: "";
  position: absolute;
  top: 101%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: 2;
}

.social li a .icon {
  position: relative;
  transition: 0.5s;
  z-index: 3;
  opacity: 1;
}

.social li a:hover .icon {
  color: var(--mainColor4);
  transform: rotateY(360deg);
  font-size: 20px;
}

.social li a:hover::before {
  top: 0;
}

.social li a:before {
  background: var(--linear-gradient);
}



.facebook:hover, .facebook:focus {
  color: #3b5998;
  box-shadow: 0 0 12px 0 #3b5998;
}

.whatsapp:hover, .whatsapp:focus {
  color: #25d366;
  box-shadow: 0 0 12px 0 #25d366;
}

.snapchat:hover, .snapchat:focus {
  color: #ffd633;
  box-shadow: 0 0 12px 0 #ffd633;
}

.tiktok:hover, .tiktok:focus {
  color: rgb(253, 107, 137);
  box-shadow: 0 0 12px 0 rgb(253, 107, 137);
}

.instagram:hover, .instagram:focus {
  color: #9f0af3;
  box-shadow: 0 0 12px 0 #9f0af3;
}

.accordion-item {
  position: relative;
}

.accordion-item::before {
  background-color: var(--primaryColor);
}

html[lang=ar] .accordion-button::after {
  margin-right: auto;
  margin-left: 0px;
}

.accordion-button:not(.collapsed) {
  color: var(--mainColor4) !important;
}



footer li {
  transition: transform 0.3s ease-in-out !important;
}

footer li:hover {
  cursor: pointer;
  transform: translateX(5px) !important;
}

.lan {
  color: white;
  font-family: "cairo";
}

.slick-slide {
  padding: 10px;
}

.slick-slider .slick-track {
  margin-left: initial;
  margin-right: initial;
}

.nav-link:hover span {
  color: var(--primaryColor) !important;
}

.nav-link span::after {
  content: "";
  width: 0%;
  height: 2px;
  bottom: -5px;
  border-radius: 12px !important;
  background: var(--linear-gradient);
  transition: all 0.25s ease-out;
  z-index: 111;
  display: flex;
  margin: auto;
}

.nav-link span {
  transition: color 0.5s ease, font-weight 0.5s ease;
  color: var(--mainColor2);
  font-weight: 500;
}

.nav-link:hover span {
  font-weight: 700 !important;
  color: transparent !important;
  background: var(--linear-gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

.btn-close {
  background-image: none;
}

.nav-link:hover span::after {
  width: 100%;
}

.nav-link.active span {
  font-weight: 700 !important;
  color: transparent !important;
  background: var(--linear-gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

.social li {
  position: relative;
}

.social li a:hover .icon path {
  stroke: var(--primaryColor) !important;
}

.btn-service:hover {
  box-shadow: inset 0 0 0 2em var(--SecondaryColor);
  cursor: pointer;
  transform: translateY(0px) !important;
  color: var(--mainColor4) !important;
}

.img-card:hover img {
  transform: scale(1.1);
  transform-origin: 50% 50%;
}

button.prev-button,
button.next-button {
  width: 30px;
  height: 30px;
  z-index: 1;
  display: flex;
  top: 12%;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1111111;
}
button.prev-button:hover,
button.next-button:hover {
  color: var(--primaryColor) !important;
  border-color: var(--primaryColor) !important;
}

.next-button {
  right: 0px;
}

.prev-button {
  right: 50px;
}

.slick-slider {
  position: unset;
}

.slick-dots {
  display: flex;
  position: absolute;
  left: 0;
  justify-content: center;
  gap: 4px;
  right: 0;
  margin: 0;
  bottom: 20px;
  padding-inline: 3rem !important;
  list-style-type: none;
}

.slick-dots button {
  display: block;
  width: 15px;
  height: 15px;
  text-align: center;
  border-radius: 50%;
  border: none;
  background-color: var(--SecondaryColor);
  text-indent: -9999px;
  transition: 0.7s !important;
}

li.slick-active button {
  background-color: var(--primaryColor);
  border-radius: 30px;
  width: 70px;
}

footer a:hover {
  color: var(--mainColor4);
  opacity: 90%;
}

.connection svg, .connection img {
  transition: all 0.8s ease;
}
.connection:hover {
  cursor: pointer;
}
.connection:hover svg, .connection:hover img {
  transform: translateY(-4px);
}

.slider-works {
  counter-reset: count 0;
}

.slider-works .number {
  position: relative;
  height: 150px;
  counter-increment: count 1;
  background: linear-gradient(to bottom, #FFFFFF, #E7E7E7);
  overflow: hidden;
  font-family: "Montagu Slab";
}

.slider-works .img-card .number::after {
  position: absolute;
  right: 0px;
  left: 0px;
  text-align: center;
  bottom: -65%;
  counter-increment: section;
  content: "0" counter(count, decimal);
  font-size: 170px;
  font-weight: 500;
}

.slider-works .col-md-6:nth-child(1) .number::after {
  color: #4F378B;
}

.slider-works .col-md-6:nth-child(2) .number::after {
  color: #257E3D;
}

.slider-works .col-md-6:nth-child(3) .number::after {
  color: #E6AD04;
}

.slider-works .col-md-6:nth-child(4) .number::after {
  color: #836646;
}

.bg-scale {
  position: relative;
  overflow: hidden;
}

.bg-scale::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 0;
}

.bg-scale > * {
  position: relative;
  z-index: 1;
}

html[lang=en] .bg-scale::before {
  transform: scaleX(-1);
}

html[lang=ar] .iti {
  position: relative;
  width: 100% !important;
}

html[lang=ar] .input-group:has(.phone) {
  direction: ltr;
}

html[lang=ar] .input-group:has(.phone) input {
  text-align: left !important;
}

.input-group:has(.phone) {
  direction: ltr;
}

.iti__selected-country-primary {
  gap: 5px;
}

.iti {
  width: 100% !important;
}

.iti__search-input {
  direction: ltr !important;
  text-align: left !important;
  padding-left: 30px !important;
  padding-right: 10px !important;
  background-position: left 8px center !important;
}

.iti__country-container {
  right: auto !important;
  left: 0 !important;
}

html[lang=ar] .iti__tel-input {
  padding-left: 92px;
}

.download-btn {
  border: 0;
  border-radius: 7px;
  background: var(--linear-gradient);
  color: #fff;
  font-size: 14px;
}
.download-btn:hover {
  color: #fff;
  opacity: 0.9;
}

.text-gradient {
  color: transparent;
  background: var(--linear-gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

.story-progress svg path {
  stroke: var(--linear-gradient);
}
.story-progress {
  background: rgba(255, 255, 255, 0.0509803922);
}

.story-progress::before {
  content: "";
  position: absolute;
  top: 98%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: 2;
}

.story-progress div {
  position: relative;
  transition: 0.5s;
  z-index: 3;
  color: var(--mainColor4);
  opacity: 1;
}

.story-progress:hover div {
  color: var(--mainColor4);
  transform: rotateY(360deg);
  font-size: 20px;
}
.story-progress:hover div svg path {
  fill: white;
}

.story-progress:hover::before {
  top: 0;
}

.story-progress::before {
  background: var(--linear-gradient);
}

.story-item:nth-child(even) .story-progress {
  background: var(--linear-gradient);
}
.story-item:nth-child(even) .story-progress span {
  background: var(--mainColor4);
}

.accordion-item {
  background: var(--linear-gradient);
}

.doctor-frame {
  height: 750px;
}

.doctor-frame {
  transform: translate(10%, -10%) rotate(-10deg);
  background: linear-gradient(125deg, #06DCC2, #C944F7);
}

html[lang=ar] .doctor-frame {
  transform: translate(-10%, -10%) rotate(10deg) scalex(-1);
}

.slider-home-nav {
  height: 700px;
}

.offcanvas {
  background: #181818;
}

body:has(.slider-home-nav) .navContainer .nav-link span {
  color: var(--mainColor4);
  font-weight: 400;
}

.typed-cursor {
  display: none;
}

.loader {
  --size: 2px;
  width: calc(100 * var(--size) - 24 * var(--size));
  height: calc(50 * var(--size));
  position: relative;
  animation: flippx 2s infinite linear;
}

.loader:before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: calc(20 * var(--size));
  height: calc(20 * var(--size));
  border-radius: 50%;
  background: var(--linear-gradient);
  transform-origin: calc(-24 * var(--size)) 50%;
  animation: spin 1s infinite linear;
}

.loader:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--linear-gradient);
  width: calc(48 * var(--size));
  height: calc(48 * var(--size));
  border-radius: 50%;
}

@keyframes flippx {
  0%, 49% {
    transform: scaleX(1);
  }
  50%, 100% {
    transform: scaleX(-1);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}


.accordion-home .accordion-button::after {
  width: 2rem !important;
  height: 2rem !important;
 background-image:
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 13H19V19H13V21H19V27H21V21H27V19H21V13Z' fill='white'/%3E%3C/svg%3E"),
    var(--linear-gradient);
background-size: 2rem !important;
  border-radius: 50%;
}

.accordion-home .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%220%200%2040%2040%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Crect%20x%3D%220.5%22%20y%3D%220.5%22%20width%3D%2239%22%20height%3D%2239%22%20rx%3D%2219.5%22%20stroke%3D%22white%22/%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M25.6569%2015.7573L24.2426%2014.3431L20%2018.5857L15.7574%2014.3431L14.3431%2015.7573L18.5858%2020L14.3431%2024.2426L15.7574%2025.6568L20%2021.4142L24.2426%2025.6568L25.6569%2024.2426L21.4142%2020L25.6569%2015.7573Z%22%20fill%3D%22white%22/%3E%3C/svg%3E");
  background-color: transparent;
}

/*# sourceMappingURL=style.css.map */