* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root {
    --textColor:#5A5D61;
    --color:#3C8799;
    --titleColor:#12161C;
    --shadow: 0 0 2px #35353540;
    --light: #ECF3F5;
}
body {
    font-family: "Almarai", serif;
    color:var(--textColor);
    font-size: 16px;
    line-height: 24px;
    background: #fff;
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}

button, form, input, select, textarea {
      font-family: "Almarai", serif;
}
h1,h2,h3,h4,h5 {
    color: var(--titleColor);
}
.flex-column {
    display:flex;
    flex-direction:column;
    justify-content: center;
}
.h-100 {
    height:100%
}
.container {
    max-width: 1352px;
    margin: auto;
}
@media(max-width:1351px) {
    .container {
        padding:0 20px
    }
}
.pd {
    padding:80px 0
}
.pdt {
    padding-top: 40px;
}

.pdb {
    padding-bottom: 40px;
}
.site-color {
    color: var(--color) !important;
}
#main {
    overflow:hidden
}
.pdl {
    padding-inline-end: 15px;
}
.pdr {
    padding-inline-start: 15px;
}
/*Header Edits*/

header {
    box-shadow: var(--shadow);
    padding: 10px 0;
    height: 80px;
    position: relative;
    z-index: 9;
}

ul.main-menu >  li {position: relative;margin-left: 12px;transition: .35s ease;}
ul.main-menu > li:hover >a {
    color:var(--color)
}
li.menu-item.selected {
    color: var(--color);
}

a.login-btn,.bars {
    background: var(--color);
    color: #fff;
}
a.login-btn i {
    display:none
}
.btn,.bars {
    padding: 19px;
    border-radius: 4px;
}

.languages {
    margin-inline-end: 20px;
    position: relative;
}
.current-lang i {
    margin-inline-end:10px;
    font-size:11px
}
.lang {
    position: absolute;
    left: 0;
    width: 70px;
    background: #fff;
    top: 26px;
    padding: 9px;
    font-size: 14px;
    box-shadow: var(--shadow);
    border-radius: 4px;
    visibility: hidden;
    opacity: 0;
    text-align: center;
}
.languages:hover .lang {
    visibility:visible;
    opacity:1
}
li.menu-item.has-children:after {
    content: url(../images/arrow-down.svg);
    display: inline-block;
    vertical-align: middle;
    margin-inline-start: 12px;
}

ul.sub-menu {
    position: absolute;
    width: 221px;
    top: 100%;
    right: 0;
    box-shadow: var(--shadow);
    padding: 9px;
    background: #fff;
    border-radius: 7px;
    visibility: hidden;
    transition: .35s ease;
    transform: translateY(45px);
    opacity: 0;
}
li.menu-item.has-children:hover .sub-menu {
    visibility:visible;
    opacity:1;
    transform:translateY(0)
}
ul.sub-menu li {
    padding:15px;
    border-bottom:1px solid #ddd;
    text-align: center;
    transition:.35s ease
}
ul.sub-menu li:hover {
    color:var(--color)
}
ul.sub-menu li:last-child {
    border:0
}
ul.sub-menu li a {
    display:block
}

/*Header edits*/


/* Slider Edits */
.slider {
    overflow: hidden;
    position: relative;
}

.owl-slider {
    opacity: 0;
    transition: opacity 0.5s ease-in-out; /* Smooth transition for initial load */
}

.owl-loaded {
    opacity: 1;
}

.slider .item {
    background-size: contain;
    background-position: right;
    background-color: #C1C2C3;
    height: calc(100vh - 80px);
    height: 620px;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.slider .item:before {
    content: '';
    position: absolute;
    width: 62%;
    height: 100%;
    top: 0;
    right: -11px;
    background: rgb(0 0 0 / 65%);
    z-index: -1;
}

h4.slider-pre-title img {
    width: 50px;
    height: 50px;
    margin-inline-end: 15px;
}

.slider-details {
    position: relative;
    transition: .5s ease;
    transition-delay: .5s;
    transform: translateY(-100%);
    opacity:0
}
.active .slider-details {
      transform: translateY(0%);
    opacity:1
}
.slider-details:before,
.slider-details:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 26%;
    right: 0;
    background: #afaaaa;
}

.slider-details:before {
    top: 0;
}

.slider-details:after {
    bottom: 0;
}

h4.slider-pre-title {
    display: flex;
    align-items: center;
    color: #fff;
}

h2.slider-title {
    font-size: 36px;
    color: #fff;
    line-height: 48px;
    margin: 15px 0;
}

p.slider-desc {
    color: #acacac;
}

/* Fade effect for slides */
.slider .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0;
    transition: opacity 0.7s ease-in-out; /* Smoother and longer fade transition */
}

.slider .owl-carousel .owl-item.active {
    opacity: 1;
}

.owl-thumbnails {
    position: absolute;
    height: 100%;
    right: 50%;
    top: 0;
    align-items: center;
    display: flex;
    overflow: hidden;
    transition: transform 0.3s ease-in-out; /* Smooth translate animation */
}

.owl-thumbnails .owl-dot {
    width: 488px;
    height: 388px;
    border-radius: 16px;
    order: 2;
    overflow: hidden;
    margin-inline-end: 20px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.owl-thumbnails .owl-dot img {
    border-radius: 16px;
    display: block;
}

.owl-thumbnails .owl-dot.active {
     /* Slight scale effect for active thumbnail */
     opacity: 1;
     order: 1;
}

.owl-thumbnails .owl-dot:not(.active) {
     /* Slightly fade out inactive thumbnails */
}

.slider .owl-nav {
    position: absolute;
    right: 50%;
    z-index: 99;
    top: 75%;
}
.slider .owl-nav button {
    background:var(--textColor);
    color:#fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-inline-end: 10px;
    cursor: pointer;
}

.owl-numbers {
    position: absolute;
    right: 64%;
    top: 77%;
    z-index: 99;
    font-size: 21px;
    color: #fff;
    font-weight: bold;
}

span.pre-title {
    font-size: 20px;
    line-height: 20px;
}

h2.main-title {
    font-size: 28px;
    line-height: 40px;
    color: var(--titleColor);
    margin: 10px 0 20px;
}
.about-desc h2.main-title {
    font-size:25px
}
strong.number {
    font-size: 40px;
    color: var(--titleColor);
    line-height: 56px;
}

p.value {
    font-size: 20px;
    color: var(--titleColor);
    line-height: 28px;
    font-weight: 400;
}
.about-desc {
    padding-inline-end: 10px;
}
figure.about-image img {
    display: block;
    border-radius: 12px;
    height: 422px;
}

figure.about-image {margin-inline-start: 10px;}

p.main-para {
    font-size: 22px;
    line-height: 32px;
}

h2.main-title:after {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    margin: 15px 0;
    background: var(--color);
}
.text-center h2.main-title:after  {
    margin:10px auto
}
.text-right h2.main-title:after  {
    margin:10px 0
}
.about {
    padding-top:80px
}
.nopd {
    padding-top: 0;
}
/*Services Section*/
.bk {
    height: 504px;
    background-size: cover;
    margin-bottom: -190px;
}

article.services .container {
    background: #fff;
    padding: 40px 80px;
    box-shadow: var(--shadow);
    border-radius: 8px;
}

h4.h4 {
    font-size: 22px;
    color: var(--titleColor);
    line-height: 32px;
}

.services-list li {
    width: 33.33%;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.services-list li img {
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
    margin-inline-end: 15px;
}

.services-list {
    margin: 20px 0 0 0;
}
.discover-row {
    margin:0 -15px
}
.discover-box {
    height: 314px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: end;
    color: #fff;
    padding: 10px;
    font-size: 20px;
    background-size: cover;
    overflow: hidden;
    margin: 15px;
}
.discover-box:hover .discover-box-content {background: #3c879994;transform: translateY(0);justify-content: end;}
.discover-box:hover .discover-box-content p {
    opacity:1
}
.discover-box-2 {
    height: 500px;
}

.discover-box-details {
    padding: 10px;
}

.discover-box-details h3 {
    font-size: 18px;
    line-height: 26px;
    color: #fff;
}

.discover-box-details p {
    font-size: 14px;
    margin: 5px 0 10px;
}

.discover-box-details a {
    font-size: 16px;
}

.discover-box-details a i {
    font-size: 9px;
    margin-inline-start: 9px;
}

.discover-box-details h3:after {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--color);
    display: block;
    margin: 5px 0 0 0;
}

figure.experience-image img {
    display: block;
    width: 296px;
    margin: auto;
}

.btns {
    margin: 25px 0;
}

a.section-btn {
    margin-inline-end: 15px;
}

.qbox h3 i {
    font-size: 12px;
    color: var(--color);
    margin-inline-end: 15px;
}

.qbox h3 {
    font-size: 16px;
    color: var(--titleColor);
    margin-bottom: 10px;
}

.qbox p {
    font-size: 16px;
}

.qbox p a {
    font-weight: bold;
    text-decoration: underline;
}

.qbox {
    padding: 15px;
}

.questions {
    margin: 0 -15px;
}

.discover-box-content {
    text-align: center;
    transition: .5s ease;
    padding: 20px;
    display: flex;
    height: 104%;
    width: 100%;
    right: 0;
    left: 0;
    position: absolute;
    flex-direction: column;
    justify-content: center;
    transform: translateY(calc(100%  - 125px));
}

.discover-box-content p {
    font-size: 18px;
    margin: 20px 0 10px;
    opacity:0
}

.discover-box-content a {
    background: #fff;
    padding: 15px;
    display: block;
    color: var(--color);
    border-radius: 3px;
}

article.parteners img {
    height: 35px;
    width: 173px;
}

article.parteners {
    background: #FAFAFB;
}
article.parteners-transparent {
    background: none;
}
.field img {
    width: 20px;
    height: 20px;
    margin-inline-end: 4px;
}

.form-control {
    display: flex;
    flex-wrap: wrap;
}

.form-field {
    flex: 1;
    padding: 15px;
}

.field {
    border: 1px solid #EBEBEC;
    border-radius: 4px;
    display: flex;
    padding: 15px;
}
.field input,.field select {
    flex:1
}
.field img~* {
    flex: 1;
    position: relative;
}
.field textarea {
    height: 126px;
    flex: 1;
}
.form-field label {
    font-size: 14px;
    font-weight: bold;
    color: var(--titleColor);
    margin-bottom: 10px;
    display: block;
}



input.btn {
    background: var(--color);
    color: #fff;
    width: 274px;
    font-size: 16px;
}

/*Footer Edits */
footer.pd {
    color: #fff;
    background: var(--color);
    overflow: hidden;
}

.footer-logo img {
    height: 80px;
    width: 280px;
}

h2.footer-title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 18px;
    color: inherit;
}

p.footer-desc {}

.footer-contact img {
    width: 24px;
    margin-inline-end: 10px;
    height: 24px;
}

.footer-contact li {
    margin-bottom: 20px;
}

.footer-contact li p {
    margin-top: 10px;
}

.footer-content {
    padding-inline-end: 25px;
}

article.footer-bottom {
    background: var(--color);
    color: #fff;
    border-top: 1px solid;
    padding: 22px;
}

.socials a {
    margin-inline-start: 5px;
    display: inline-block;
    height: 24px;
}

.socials a img {
    height: 24px;
    width: 24px;
}

.fixed-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: 80px;
    top: 160px;
    z-index: 9999999;
    background: #f6f6f691;
    padding: 12px;
    border-radius: 57px;
    border: 1px solid #fff;
    justify-content: space-between;
    height: 132px;
}

.fixed-btns a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #3C87994D;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s ease;
}
.fixed-btns a:hover {
    background:#fff
}
.fixed-btns a img {
    width: 24px;
    height: 24px;
}

.fixed-btns:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    border-radius: inherit;
    backdrop-filter: blur(10px);
    z-index: -1;
}

article.banner img {
    display: block;
    width: 100%;
    max-height: 500px;
}
.row-gap-15 {
    margin:0 -15px
}
.specializations-block {
    height: 244px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    margin: 15px;
}

.specializations-block figure {
    width: 244px;
}

.specializations-block figure img {
    display: block;
    width: 100%;
    height: 100%;
}

.spec-blocks-dtl {
    padding: 24px;
    flex: 1;
}

.images {
    display: flex;
    margin-right: 8px;
}

.images img {
    border-radius: 50%;
    margin-right: -8px;
    width: 32px;
    height: 32px;
}

.spec-blocks-dtl h3 {
    font-size: 20px;
    color: var(--titleColor);
}

.spec-blocks-dtl p {
    font-size: 18px;
    margin: 15px 0;
}

.spec-blocks-dtl a {
    margin-top: 15px;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
}

.spec-blocks-dtl a img {
    width: 24px;
    height: 24px;
    margin-inline-start: 5px;
}

.images span {
    background: #ECF3F5;
    border: 2px solid #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    color: var(--color);
    margin-right: -8px;
}

.features-list-box {
    font-size: 18px;
    padding: 15px;
}

h2.title-color {
    color: var(--titleColor);
    margin-bottom: 15px;
    font-size: 22px;
    padding-top: 0;
    border-top: 0;
}

.doctor {
    margin: 15px;
    box-shadow: var(--shadow);
    height: calc(100% - 15px);
}

.doctor-dtl {
    padding: 20px;
    text-align: center;
}

.doctor-dtl h3 {
    color: var(--titleColor);
    margin-bottom: 15px;
    font-size: 20px;
}

.doctor-dtl p {
    font-size: 18px;
    margin-bottom: 15px;
}

.doctor-dtl a {
    padding: 16px 32px;
    color: var(--color);
    border: 2px solid;
    display: block;
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
}

.video-holder {
    position: relative;
    height: 676px;
    border-radius: 6px;
    overflow: hidden;
}

a.play {
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
}

.success-stories .owl-nav {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}
.success-stories .owl-nav * {
     color: var(--color);
}

.success-stories .owl-dots {
    display: flex;
    justify-content: center;
    margin: -24px auto 0;
    background: #ECF3F5;
    padding: 10px;
    width: fit-content;
    border-radius: 14px;
    box-shadow: var(--shadow);
}
.success-stories .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    background: var(--color);
    border-radius: 6px;
    margin: 0 1px;
    opacity: .4;
}
.success-stories .owl-dots .owl-dot.active {
    opacity: 1;
    width: 24px;
}

.profile-info img {
    width: 24px;
    margin-inline-end: 20px;
}

.profile-info {
    margin-bottom: 20px;
}

.profile-info h3 {
    margin-bottom: 10px;
    color: var(--titleColor);
}

ul.profile-info-list {
    margin-inline-start: 20px;
}
.doctor-links a {padding: 16px 32px;display: inline-flex;justify-content: center;align-items: center;border-radius: 4px;width: 274px;margin-inline-end: 20px;font-weight: bold;}
.doctor-links a.reserve {
    color: #fff;
    background: var(--color);
}
.doctor-links a.discuss {
    background: #ECF3F5;
}
.doctor-links a.visit {
    color: var(--color);
    border: 2px solid;
    background: transparent;
}

section.login {
    width: 640px;
    margin: auto;
    text-align: center;
}

.tabs {
    border-radius: 7px;
    background: #ECF3F5;
}
.tabs div {
    flex: 1;
    padding: 15px;
    border-radius: 7px;
    font-size: 18px;
    color: var(--color);
    cursor: pointer;
}

.tabs div.active {
    background: var(--color);
    color: #fff;
}

h2 {}

.sign-box-title {
    margin: 50px 0;
}

.sign-box-title h2 {
    color: var(--titleColor);
    margin-bottom: 30px;
}

.social-login a img {
    width: 48px;
}

.social-login a {
    margin: 0 4px;
}

.or {
    position: relative;
    z-index: -1;
    display: flex;
    justify-content: center;
}

.or:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #EBEBEC;
    top: 13px;
    right: 0;
    position: absolute;
}

.or span {
    background: #fff;
    padding: 0 31px;
    position: relative;
}

a.have-not-account {
    color: var(--titleColor);
    font-weight: bold;
    display: block;
    text-align: center;
    margin: 30px 0 0 0;
}

.form-control a {
    color: var(--titleColor);
    font-weight: bold;
}
.form-holder >div {
    display: none;
}
.form-holder >div.active {
    display: block;
}

.activation {
    max-width: 641px;
    margin: 50px auto;
    padding: 32px;
    box-shadow: var(--shadow);
    border-radius: 12px;
}

form.send-code {
    margin: 15px 0;
}

form.send-code input[type="number"] {
    width: 90px;
    height: 90px;
    border: 1px solid #ddd;
    border-radius: 7px;
    text-align: center;
    font-size: 29px;
    font-weight: bold;
    color: #000;
}

form.send-code input[type="submit"] {
    background: var(--color);
    width: 100%;
    padding: 16px;
    border-radius: 4px;
    color: #fff;
    margin: 25px 0 0 0;
}

p.not-send a {
    color: var(--color);
}

.activation form.custom-form {
    margin: 0 -15px;
}

p.not-send {
    color: var(--titleColor);
}

article.single {
    margin: -50px 0 0 0;
}

article.single .container {
    background: #fff;
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow);
    border-radius: 12px;
}

article.single .container * {
    padding: revert;
    margin: revert;
}

a.aside-tab {
    box-shadow: var(--shadow);
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    transition:.45s ease
}
a.aside-tab.active,a.aside-tab:hover {
    background: var(--color);
    color: #fff;
}
a.aside-tab p {
    margin-top: 10px;
}
a.aside-tab.active h3,a.aside-tab:hover h3 {
    color:#fff
}

.video-box,.text-box {
    margin: 15px;
    box-shadow: var(--shadow);
}

.image-holder {
    height: 275px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-holder img {
    width: 70px;
    cursor: pointer;
}

.video-dtl {
    padding: 20px;
}

.video-dtl h3 {
    margin-bottom: 15px;
}

.aside-tabs {
    margin: 15px 0 0 15px;
}

.all-videos-holder {
    overflow: auto;
    scrollbar-width: none; /* Firefox */
}

a.download {
    display: inline-flex;
    background: var(--light);
    margin: 25px 0 0 0;
    color: var(--color);
    padding: 16px 32px;
}
a.download img {
    margin-inline-start:5px
}

.rights-box img {
    margin-inline-end: 10px;
}
.rights-box h4 {
    margin-bottom:10px
}
.rights-box h4,.rights-box p {
    font-size: 18px;
}

.rights-box {
    margin: 15px;
}

.text-box {
    padding: 20px;
    font-size: 18px;
}

p.feedback {
    margin: 15px 0 0;
}

.text-box img {
    margin-inline-end: 20px;
}

.text-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

a.show-profile, button.show-profile {
    display: block;
    text-align: center;
    color: var(--color);
    border: 2px solid;
    border-radius: 4px;
    margin: 15px 0 0 0;
    padding: 8px;
    flex: 1;
    transition: .35s ease;
}
button.show-profile{
    font-size: 16px;
    font-weight: 700;
    padding: 10px;
}

.show-profile[disabled] {
    background-color: #ddd !important;
    color: #999 !important;
    cursor: not-allowed !important;
    pointer-events: none;
    opacity: 0.6;
}
.disabled-link{
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}
.user-login{
    width: 100%;
    cursor: pointer;
    background-color: #fdfdfd;
    color: #000;
    font-size: 16px;
}
.footer-contact-phone h4{
    margin-bottom: 10px;
}
.footer-contact-phone h4{
    margin-top: 16px;
}

.delete_account{
    cursor: pointer;
}
.reset_password {
    width: 100%;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    background-color: #3C8799;
    color: #fff;
}

.logout-button{
    cursor: pointer;
    font-size: 16px;
    margin-top: 16px;

}
a.show-profile:hover, button.show-profile:hover {
    background:var(--color);
    color:#fff;
    cursor: pointer;
}

.books button.show-profile {
    width: 75%;
    margin-left: 10px;
    padding-right: 10px;
    display: inline-block;

}

.text-box > img {
    margin-bottom: 10px;
}

.visit-box {
    margin: 15px;
    box-shadow: var(--shadow);
    padding: 32px;
}

a.visit {
    display: block;
    width: 274px;
    padding: 16px 32px;
    background: var(--color);
    color: #fff;
    margin: 15px 0 0;
    border-radius: 4px;
    text-align: center;
}

.partener-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.partener-image img {
    margin: 0;
}

.device-image {
    margin: -20px -20px 20px;
    position: relative;
}

.device-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.doctor-info img {
    margin-inline-end: 15px;
}

.step {
    padding: 12px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
}

.step .number {
    margin-inline-end: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid;
    border-radius: 50%;
}

.step.active {
    background: var(--color);
    color: #fff;
}
.step.active h3 {
    color:#fff
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.steps-holder {
    margin-inline-start: 30px;
}

.next,.confirm {
    padding: 12px 32px;
    background: var(--color);
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    height: 48px;
}

.prev {
    padding: 10px 32px;
    color: var(--color);
    border-radius: 4px;
    cursor: pointer;
    margin-inline-end: 20px;
    border: 2px solid;
    height: 48px;
}

.step-content h4 {
    font-size: 18px;
    margin-right: 15px;
}


.flatpickr-calendar {width: 100% !important;box-shadow: var(--shadow) !important;}

.flatpickr-innerContainer {
    justify-content: center;
}

.flatpickr-months {
    justify-content: center !important;
    align-items: center !important;
}

.flatpickr-months {
    border-bottom: 1px solid #eee;
    padding: 10px;
    margin-bottom: 15px;
}

span.flatpickr-day.today {
    background: var(--color);
    color: #fff;
    border-radius: 4px;
}

span.flatpickr-day {
    border-radius: 4px;
}

.appoints h4 {
    margin-bottom: 15px;
    margin-inline-start: 20px;
}

.times-spans span {
    padding: 8px;
    border: 1px solid #ECF3F5;
    border-radius: 8px;
    margin: 3px;
    color: var(--color);
}

.times-spans span.active {
    color: #fff;
    background: var(--color);
}

.times-spans span.disable {
    background: #EBEBEC;
    color: #fff;
}

.times-spans {margin-bottom: 15px;}

a.clinic {
    padding: 8px 32px;
    background: #F1F4F4;
    border-radius: 25px;
}

.step-bar {
    margin: 15px 0;
}

.step-content p img {
    margin-left: 8px;
}


.payment-box {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.payment-box:first-of-type {
    margin: 20px 0px 10px 0px;
}


.payment-box img {
    margin: 0 5px 0 10px;
}

.thankyou-box {
    width: 550px;
    margin: 50px auto;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px;
    border-radius: 12px;
}

.thankyou-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.confirm-link,.delete-account {
    margin: 5px 0;
    border-radius: 4px;
    background: #ECF3F5;
    padding: 13px;
}

.confirm-link:first-of-type {
    margin: 25px 0 5px;
    background: var(--color);
    color: #fff;
}

.activation h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

input.btn.q-btn {
    background: #ECF3F5;
    color: var(--color);
}

.activation .form-field label {
    font-size: 16px;
}

.toggle span {
    display: inline-flex;
    width: 24px;
    height: 24px;
    background: var(--light);
    border-radius: 50%;
    margin-inline-end: 10px;
}

.toggle {
    display: flex;
}

p.no {
    display: none;
}

.depended-value {
    margin: 20px  0 0;
    text-align: center;
    min-width: 100%;
}

.toggle.active span {
    background: var(--color);
    position: relative;
}

.toggle.active span:after {
    position: absolute;
    content: '';
    left: -3px;
    top: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid var(--color);
}

.activation.attend {
    width: 300px;
}

span.price {
    margin-inline-start: 20px;
    font-size: 20px;
    color: var(--titleColor);
    margin-top: 15px;
}

p.time-date {
    margin: 15px 0 0 0;
    display: flex;
    align-items: center;
}

a.btn-color {
    margin: 25px 0 0 0;
    padding: 16px 32px;
    background: var(--color);
    display: inline-flex;
    margin-inline-end: 15px;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.text-time {
    font-size: 18px;
}

.albums-carousel {
    position: relative;
}

.albums-carousel .owl-stage-outer {
    overflow: hidden;
}

.albums-carousel .owl-dots {
    position: absolute;
    bottom: 103px;
    z-index: 999;
    display: flex;
    background: #ced4d4;
    right: 50%;
    width: fit-content;
    padding: 7px 10px;
    transform: translateX(50%);
    border-radius: 18px;
}

.albums-carousel .owl-dots .owl-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7d8083;
    margin: 0 3px;
}

.albums-carousel .owl-dots button.owl-dot.active {
    width: 18px;
    border-radius: 4px;
    background: #000;
}

.albums-carousel .owl-nav.disabled {
    display: none;
}

.global-doctor-box img {
    margin-left: 20px;
}

.global-doctor-box {
    box-shadow: var(--shadow);
    border-radius: 10px;
    margin: 15px;
}

.global-doctor-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-holder {
    padding: 32px;
    box-shadow: var(--shadow);
    border-radius: 4px;
    text-align: center;
}

.con-box p {
    display: block;
    width: 240px;
    margin: auto;
}

.contact-holder >div:nth-child(2) .con-box {border-right: 1px solid #dedede;border-left: 1px solid #dedede;}

.cart-box {
    border-radius: 4px;
    padding: 32px;
    box-shadow: var(--shadow);
    margin: 15px;
}

.title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-bar strong {
    font-size: 20px;
    color: var(--titleColor);
}

a.delete-all {
    display: flex;
    color: var(--color);
}

.product {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #EBEBEC;
}

.actions {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.product >  img {
    margin-inline-end: 20px;
}

.product-control {
    display: flex;
    align-items: center;
}

.increase,.decrease {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ECF3F5;
    color: var(--color);
    border-radius: 4px;
    cursor: pointer;
}

span.product-number {
    width: 50px;
    text-align: center;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0 5px 0;
    display: block;
}

.product:last-child {
    border: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.product-sm {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.total {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #EBEBEC;
}

a.pay {
    display: block;
    margin: 15px 0 0;
    text-align: center;
    background: var(--color);
    color: #fff;
    padding: 16px;
    border-radius: 4px;
}


.cart-go-checkout
{
    display: block;
    margin: 15px 0 0;
    text-align: center;
    background: var(--color);
    color: #fff;
    padding: 16px;
    border-radius: 4px;
}
.cart-check {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: var(--color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-inline-end: 10px;
}

.delete-account {
    background: #FDEEEE;
    color: #E92727;
}
.settings-title {
    font-size: 20px;
    margin-right: 20px;
}

.filter-box {
    padding: 8px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    margin: 5px;
}

table.book-table {
    width: 100%;
}

table.book-table thead {
    background: var(--light);
}

table.book-table td {
    padding: 15px 10px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

table.book-table tr:last-child td {
}



table.book-table th {
    padding: 10px;
    text-align: center;
}

table.book-table td .flex-1 {
    text-align: right;
    margin-inline-start: 18px;
}

span.complete {
    color: #12B76A;
    background: #12b76a1f;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
}

a.show {
    margin-inline-start: 15px;
    color: var(--color);
}

span.distination {
    color: #5A5D61;
    background: #eee;
    padding: 5px 10px;
    border-radius: 12px;
}

span.pending {
    color: #FB6514;
    background: #FFF6ED;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
}

span.cancel {
    color: #E92727;
    background: #FDEEEE;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
}

.pagination {
    padding: 20px;
}

a.prev-nav,a.next-nav {
    padding: 8px 16px;
    box-shadow: var(--shadow);
    border-radius: 4px;
    display: block;
}

.pagination li {
    display: flex;
}

.pagination li a,.pagination li span {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination li span.current {
    background: var(--light);
    border-radius: 4px;
}

a.reserve-new {
    display: inline-flex;
    margin: 25px 0 0 0;
    padding: 8px 16px;
    border-radius: 4px;
    color: var(--color);
    align-items: center;
    border: 2px solid;
}

a.prev-nav i {
    margin-inline-end: 10px;
}

a.next-nav i {
    margin-inline-start: 10px;
}

.table-holder {
    border-radius: 4px;
    border: 1px solid #35353521;
    overflow: auto;
}

.details-bar h3 {
    font-size: 25px;
}

button.cancel-reserve {
    color: #E92727;
    cursor: pointer;
    border: 2px solid;
    padding: 8px 32px;
    border-radius: 4px;
    font-size: 18px;
}


.doctor-details {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px dashed #00000033;
}

span.name {
    color: #868686;
    background: var(--light);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
}

.doctor-details img {
    margin-inline-end: 15px;
}

.doctor-info {
    margin: 15px 0;
}

.doctor-info h4 {
    display: flex;
}

.doctor-info ul {
    margin: 10px 34px  0 0;
}

.li {
    margin-bottom: 10px;
    display: flex;
}

.li:first-of-type {
    margin-top: 20px;
}

.li:last-child {
    margin-bottom: 0;
}

.title-color {
    border-top: 1px solid #eee;
    padding-top: 10px;
}

a.book-appointement {
    border: 2px solid;
    padding: 8px 32px;
    color: var(--color);
    border-radius: 4px;
}

label.lbl {
    border-radius: 4px;
    padding: 8px 32px;
    margin-inline-end: 10px;
    background: #EBEBEC;
}

.tags span {
    color: var(--color);
    background: var(--light);
    padding: 9px;
    border-radius: 4px;
    margin-inline-start: 10px;
}

a.discover {
    padding: 8px 32px;
    border: 2px solid;
    color: var(--color);
    border-radius: 4px;
    height: 44px;
}

a.reserve-new i {
    margin-inline-end: 8px;
}

a.dw.site-color {
    display: inline-flex;
    margin-inline-start: 20px;
    align-items: center;
}

a.dw.site-color img {
    margin-inline-end: 10px;
}
.dw i {
  margin-inline-end: 10px;
}

.tbl img {
    margin-inline-end: 10px;
}

.li img {
    margin-inline-end: 10px;
}

a.head-icon {
    margin-inline-start: 20px;
}
a.head-icon img {
    margin-inline-end:5px
}
.bars {
    display:none
}
/*responsive*/


@media (max-width: 1023px) {
    * {}
    nav {
        position: absolute;
        top: 100%;
        background: #fff;
        right: 0;
        width: 100%;
        display: none;
    }
    nav ul {
        flex-direction:column
    }
    ul.main-menu > li {
        padding:10px;
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    li.menu-item.has-children:after {
        position:absolute;
        left: 10px;
        top: 10px;
    }
    ul.sub-menu li {
        padding:10px;
        text-align: right;
    }
    ul.sub-menu {
        position:static;
        width: 100%;
        transform: translate(0);
        opacity: 1;
        box-shadow: 0 0;
        border-radius: 0;
        visibility: visible;
        background: #eee;
        margin: 15px 0;
        display: none;
    }
     figure.logo {
        flex:1
    }
    article.services .container {
        padding:15px
    }
    article.parteners .flex-between {
        flex-wrap:nowrap;
        overflow:auto;
         scrollbar-width: none;
    }
      article.parteners .flex-between img {
          margin-inline-end:20px
      }
    .bars {
        margin-inline-start:6px;
        display:flex
    }
    .row-gap-15 {
        margin:0
    }
}

@media (max-width: 991px) {
    * {

    }
    .slider-details:before, .slider-details:after,
    .owl-thumbnails {
        display:none
    }
    .slider .item:before {
        width:100%;
        right: 0;
    }
    .slider .item {
        background-size:cover;
        background-position: center;
    }
    .owl-nav,.owl-numbers {
        display:none
    }
        .steps,.aside-tabs {
        display:flex;
        overflow: auto;
    }
    .step,.aside-tabs a {
        min-width:90vw;
        margin-inline-end:10px
    }
    .steps-holder {
        margin-inline-start:0
    }
}

@media (max-width: 767px) {
    * {

    }

    .activation {
        margin:25px 10px;
        padding: 32px;
    }
    .form-field {
        padding:15px 0
    }
    table.book-table td,table.book-table th {
        min-width: 160px;
    }
    table.book-table th:nth-child(3),
    table.book-table td:nth-child(3) {
        min-width: 266px;
    }
    .slider .item {
        height:450px
    }
   .counter-box {
       margin-bottom:20px
   }
    .user-logged-in {
        position:fixed;
        bottom: 0;
        right: 0;
        width: 100%;
        background: #fff;
        justify-content: center;
        padding: 10px;
        box-shadow: var(--shadow);
    }
    .services-list li {
        width:100%;
        padding: 3px 0;
    }
    h2.main-title, h2.footer-title, h2.slider-title,
    .about-desc h2.main-title,p.value,
    .activation h4,.doctor-dtl h3,h2.title-color
    {
        font-size:20px;
        line-height:1.5
    }
    .text-box h4,.doctor-info h3,.step h3 ,a.aside-tab h3,h3{
        font-size:16px
    }
    .doctor-info p,.step {
        font-size:11px
    }
    h2.slider-title {
        margin:0  0 15px
    }
    p.main-para,p.footer-desc,
    .discover-box-content p ,
    .discover-box-content a,
    p.feedback,
    a.show-profile,
    .activation p,.doctor-dtl p,.doctor-dtl a,.features-list-box,p,
    a.prev-nav, a.next-nav
    {
        font-size:13px;
        line-height:1.8
    }
    .footer-bottom .flex-between {
        flex-direction:column
    }
    span.pre-title ,.copyright,h4.slider-pre-title,p.slider-desc{
        font-size:11px;
        line-height:1.1;
    }
    .socials {
        margin:15px 0 0 0
    }
    .experience-image  {
        margin-bottom:25px
    }
    .footer-content {
        margin:0 0 20px
    }
    article.footer-bottom {
        padding-bottom:60px
    }
    .fixed-btns {
        left:10px
    }
      a.login-btn span {
          display:none
      }
    a.login-btn i {
        display:block
    }
        figure.about-image {
        margin: 0;
        margin-top:25px
    }
    form.send-code input[type="number"] {
        width: 32px;
        height: 32px;
    }
    .flatpickr-calendar {
        width:85vw !important;
    }
}

@media (max-width: 575px) {
    * {

    }
    .text-box .time-date img {
        width:15px;
        margin-inline-end:5px
    }
    table.book-table td,table.book-table td span,table.book-table td a {
        font-size:11px
    }
    .slider .item {
        height:300px
    }
    h4.slider-pre-title img {
        width:20px
    }
    .pd {
        padding:30px 0
    }
        .activation {
            padding:32px
        }
    .about {
        padding-top:30px
    }
    .times-spans span {
        font-size:11px;
        padding: 2px 7px;
    }
    a.login-btn,.bars {
        padding: 8px;
        font-size: 12px;
        height: 29px;
        display: flex;
        justify-content: center;
    }

    a.section-btn {
        width:100%;
        text-align: center;
    }
      a.section-btn img {
          width:100%
      }
    input.btn {
        width:100%;
        margin-bottom:30px;
        font-size: 13px;
        padding: 10px;
    }

    figure.about-image img {
        height:auto;

    }
    .doctor-links a {
        margin:5px 0
    }
    .fixed-btns {
        height: 92px;
    }
    .fixed-btns a {
        width:30px;
        height:30px
    }
    .fixed-btns a img {
        width:15px
    }
    .pagination {
        flex-direction:column
    }
      .pagination ul {
          margin:15px 0
      }
}

article.video-holder-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    top: 0;
    z-index: 9999999999;
    background: #000000d4;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: .35s ease;
}

.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    right: 0;
    padding: 50px;
    overflow: auto;
    left: 0;
    top: 0;
    z-index: 9999999999;
    background: #000000d4;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: .35s ease;
}

article.video-holder-wrapper.open,.popup.open {
    visibility:visible;
    opacity:1
}

article.book-form {
    background: #fff;
}



@media(max-width:991px) {
        a.login-btn {
        margin-top:0
        }
        section.login {
                max-width:100%
        }
        header {
        z-index:999999999
        }
        [lang="en"] li.menu-item.has-children:after {
                right: 10px;
                left:initial;
        }
        .specializations-block {
                height:auto;
        }
        .images img {
                width: 22px;
        }
        .discover-box-details{
                background:#000000c7
        }
        .aside-tabs {
                flex-direction:column
        }
        .step,.aside-tabs a {
        min-width: 100%;
        margin:5px 0 !important
    }
        .pagination li a, .pagination li span {
                width:22px;
                height:22px
        }
}
