@font-face {
    font-family: "LamaSans";
    src: url("../fonts/LamaSans/LamaSans-Medium.ttf");
    font-weight: 700;
}

@font-face {
    font-family: "LamaSans";
    src: url("../fonts/LamaSans/LamaSans-Regular.ttf");
    font-weight: 500;
}

@font-face {
    font-family: "LamaSans";
    src: url("../fonts/LamaSans/LamaSans-Bold.ttf");
    font-weight: 900;
}

* {
    margin: 0px;
    box-sizing: border-box;
    font-family: "LamaSans", sans-serif;
    scroll-behavior: smooth;
}

*::-moz-selection {
    background-color: var(--primary-color);
    color: var(--light-color);
}

*::selection {
    background-color: var(--primary-color);
    color: var(--light-color);
}

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background-color: var(--light-color);
}

*::-webkit-scrollbar-thumb:hover, *::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 8px;
}

.overflowNone {
    overflow: hidden;
}

.btn:focus,
button:focus,
input:focus,
.form-control:focus {
    outline-width: 0px !important;
    outline-color: transparent !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a {
    text-decoration: none !important;
}

ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

button {
    outline: none !important;
    border: 0px !important;
}

.swiper-pagination {
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: rgba(77, 182, 168, 0.5);
    border-radius: 50%;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background-color: var(--primary-color);
}

@keyframes pinDrop {
    0% {
        transform: translateY(-20px) scale(0.5);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes slide_up_down {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes slide_up_X {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-10px);
    }
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce-in-fwd {
    0% {
        transform: scale(0);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    38% {
        transform: scale(1);
        animation-timing-function: ease-out;
        opacity: 1;
    }
    55% {
        transform: scale(0.7);
        animation-timing-function: ease-in;
    }
    72% {
        transform: scale(1);
        animation-timing-function: ease-out;
    }
    81% {
        transform: scale(0.84);
        animation-timing-function: ease-in;
    }
    89% {
        transform: scale(1);
        animation-timing-function: ease-out;
    }
    95% {
        transform: scale(0.95);
        animation-timing-function: ease-in;
    }
    100% {
        transform: scale(1);
        animation-timing-function: ease-out;
    }
}

@keyframes bounce-in-top {
    0% {
        transform: translateY(-50px);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    38% {
        transform: translateY(0);
        animation-timing-function: ease-out;
        opacity: 1;
    }
    55% {
        transform: translateY(-20px);
        animation-timing-function: ease-in;
    }
    72% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
    81% {
        transform: translateY(-15px);
        animation-timing-function: ease-in;
    }
    90% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
    95% {
        transform: translateY(-4px);
        animation-timing-function: ease-in;
    }
    100% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
}

@keyframes bounce-in-left {
    0% {
        transform: translateX(-30px);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    38% {
        transform: translateX(0);
        animation-timing-function: ease-out;
        opacity: 1;
    }
    55% {
        transform: translateX(-20px);
        animation-timing-function: ease-in;
    }
    72% {
        transform: translateX(0);
        animation-timing-function: ease-out;
    }
    81% {
        transform: translateX(-10px);
        animation-timing-function: ease-in;
    }
    90% {
        transform: translateX(0);
        animation-timing-function: ease-out;
    }
    95% {
        transform: translateX(-4px);
        animation-timing-function: ease-in;
    }
    100% {
        transform: translateX(0);
        animation-timing-function: ease-out;
    }
}

@keyframes pulse-shadow {
    100% {
        box-shadow: 0 0 0 10px rgba(255, 102, 0, 0), 0 0 0 20px rgba(255, 102, 0, 0);
    }
}

@keyframes spinner {
    0% {
        transform: scale3d(1, 1, 1);
    }
    100% {
        transform: scale(1.4);
    }
}

@keyframes pulse {
    0% {
        transform: scale3d(1, 1, 1);
        opacity: 0;
    }
    50% {
        transform: scale3d(0.8, 0.8, 0.8);
        opacity: 0.5;
    }
    100% {
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

/*dropdown animation*/
@keyframes dropdown-animate {
    0% {
        opacity: 0;
        transform: rotateX(-90deg);
    }
    50% {
        transform: rotateX(20deg);
    }
    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes wave {
    0%, 100% {
        -webkit-clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
        clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
    }
    50% {
        -webkit-clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
        clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
    }
}

@keyframes niceAnimate {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes translation {
    0% {
        transform: translateZ(0%);
    }
    100% {
        transform: translateZ(10%);
    }
}

@keyframes rotate-scale-up {
    0% {
        transform: scale(1) rotateZ(0);
    }
    50% {
        transform: scale(2) rotateZ(180deg);
    }
    100% {
        transform: scale(1) rotateZ(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes vibrate {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-10px, 10px);
    }
    40% {
        transform: translate(-10px, -10px);
    }
    60% {
        transform: translate(10px, 10px);
    }
    80% {
        transform: translate(10px, -10px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes translateX {
    0%, 100% {
        transform: translateX(2px);
    }
    50% {
        transform: translateX(-2px);
    }
}

@keyframes translateY {
    0%, 100% {
        transform: translateY(2px);
    }
    50% {
        transform: translateY(-2px);
    }
}

@keyframes flip-in-hor-bottom {
    0% {
        transform: rotateX(80deg) translate(-50%, -50%);
        opacity: 0;
    }
    100% {
        transform: rotateX(0) translate(-50%, -50%);
        opacity: 1;
    }
}

@keyframes shadow {
    0% {
        box-shadow: 0px 0px 35px -4px #00a4e6;
        opacity: 0 !important;
    }
    100% {
        box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
    }
}

@keyframes rotate {
    0% {
        border-radius: 50% 60% 55% 40%;
    }
    25% {
        border-radius: 30% 10% 70% 20%;
    }
    50% {
        border-radius: 20% 40% 30% 60%;
    }
    75% {
        border-radius: 70% 20% 50% 30%;
    }
    100% {
        border-radius: 50% 60% 55% 40%;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes move {
    25% {
        opacity: 1;
    }
    33% {
        opacity: 1;
        transform: translateX(30px);
    }
    67% {
        opacity: 1;
        transform: translateX(40px);
    }
    100% {
        opacity: 0;
        transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
    }
}

@keyframes clip {
    0% {
        -webkit-clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
        clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
    }
    50% {
        -webkit-clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
        clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
    }
    100% {
        -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
        clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
    }
}

@keyframes sideClip {
    0% {
        -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
        clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
    }
    50% {
        -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
    }
    100% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes sideClip_2 {
    0% {
        -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
        clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
    }
    50% {
        -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
        clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
    }
    100% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
        clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
    }
}

@keyframes toRightFromLeft {
    49% {
        transform: translate(100%);
    }
    50% {
        opacity: 0;
        transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes topBubbles {
    0% {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
    }
    50% {
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
    }
    100% {
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

@keyframes bottomBubbles {
    0% {
        background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
    }
    50% {
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
    }
    100% {
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

@keyframes storm {
    0% {
        transform: translate3d(0, 0, 0) translateZ(0);
    }
    25% {
        transform: translate3d(4px, 0, 0) translateZ(0);
    }
    50% {
        transform: translate3d(-3px, 0, 0) translateZ(0);
    }
    75% {
        transform: translate3d(2px, 0, 0) translateZ(0);
    }
    100% {
        transform: translate3d(0, 0, 0) translateZ(0);
    }
}

@keyframes moving {
    0% {
        background-position-x: 0px;
    }
    100% {
        background-position-x: -10000px;
    }
}

:root {
    --primary-color: #4db6a8;
    --secondary-color: #2d5d63;
    --dark-color: #000;
    --light-color: #fff;
    --gray-color: #808080;
    --primary-filter: invert(79%) sepia(11%) saturate(1778%) hue-rotate(121deg) brightness(79%) contrast(86%);
    --secondary-filter: invert(30%) sepia(35%) saturate(611%) hue-rotate(138deg) brightness(92%) contrast(87%);
    --light-filter: invert(92%) sepia(100%) saturate(23%) hue-rotate(251deg) brightness(108%) contrast(100%);
    --gray-filter: invert(58%) sepia(0%) saturate(3400%) hue-rotate(13deg) brightness(87%) contrast(97%);
}

.custom-btn {
    width: 175px;
    height: 50px;
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 50px;
    transition: transform 0.3s linear;
    gap: 10px;
    border: 1px solid;
}

.custom-btn img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
    filter: var(--light-filter);
}

.custom-btn span {
    font-size: 16px;
    font-weight: 900;
    color: var(--light-color);
}

.custom-btn.primary-btn {
    border-color: rgba(77, 182, 168, 0.2);
    background-color: var(--primary-color);
}

.custom-btn.primary-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(0.95);
}

.custom-btn.secondary-btn {
    border-color: rgba(45, 93, 99, 0.2);
    background-color: var(--secondary-color);
}

.custom-btn.secondary-btn:hover {
    transform: scale(0.95);
    background-color: var(--primary-color);
}

.custom-btn.dark-btn {
    border-color: rgba(0, 0, 0, 0.2);
    background-color: var(--dark-color);
}

.custom-btn.dark-btn:hover {
    transform: scale(0.95);
    background-color: var(--light-color);
}

.custom-btn.dark-btn:hover span {
    color: var(--dark-color);
}

.custom-btn.dark-btn:hover img {
    filter: none;
}

.custom-btn.secondary-light-btn {
    background-color: var(--secondary-color);
}

.custom-btn.secondary-light-btn:hover {
    transform: scale(0.95);
    background-color: var(--light-color);
}

.custom-btn.secondary-light-btn:hover img {
    filter: var(--secondary-filter);
}

.custom-btn.secondary-light-btn:hover span {
    color: var(--secondary-color);
}

.custom-btn:hover {
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
}

.download-btn {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}

@media (max-width: 992px) {
    .download-btn {
        justify-content: center;
    }
}

.download-btn .download-button {
    width: 160px;
    height: 50px;
    transition: all 0.3s linear;
}

.download-btn .download-button img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width: 992px) {
    .download-btn .download-button {
        width: 145px;
    }
}

.download-btn .download-button:hover {
    transform: scale(0.98);
}

.social-media {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 5px;
}

.social-media.primary-color li {
    color: var(--primary-color);
}

.social-media.primary-color li a img {
    filter: var(--primary-filter);
}

.social-media.light-color li {
    color: var(--light-color);
}

.social-media.light-color li a img {
    filter: var(--light-filter);
}

.social-media li {
    font-size: 15px;
    font-weight: 500;
}

.social-media li a {
    width: 32px;
    height: 32px;
    display: flex;
    align-content: center;
    align-items: center;
    transition: all 0.3s linear;
}

.social-media li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.social-media li a:hover {
    transform: scale(0.9);
}

.heading {
    width: 50%;
    text-align: center;
    margin: 0px auto 60px;
}

@media (max-width: 992px) {
    .heading {
        width: 100%;
        margin-bottom: 40px;
    }
}

.heading.white-heading .title {
    color: var(--light-color);
}

.heading.white-heading .desc {
    color: rgba(255, 255, 255, 0.75);
}

.heading .title {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .heading .title {
        font-size: 20px;
    }
}

.heading .desc {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-color);
    margin: 0px;
}

.general-section {
    width: 100%;
    padding: 80px 0px;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

@media (max-width: 992px) {
    .general-section {
        padding: 40px 0px;
    }
}

@media (max-width: 992px) {
    .padding-shape {
        padding: 0px 6px;
    }
}

.doctor-box {
    width: 100%;
    position: relative;
    z-index: 9;
    border-radius: 12px;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
    background-color: var(--light-color);
    transition: all 0.3s linear;
}

.doctor-box .image-contain {
    width: 100%;
    height: 226px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 9;
}

@media (max-width: 992px) {
    .doctor-box .image-contain {
        height: 150px;
    }
}

.doctor-box .image-contain img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.doctor-box .contain {
    width: 100%;
    padding: 15px 20px;
}

@media (max-width: 992px) {
    .doctor-box .contain {
        padding: 10px 15px;
    }
}

.doctor-box .contain h3 {
    font-size: 16px;
    font-weight: 900;
    color: var(--dark-color);
    margin: 0px;
}

@media (max-width: 992px) {
    .doctor-box .contain h3 {
        font-size: 15px;
    }
}

.doctor-box .contain .video-link {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    margin: 15px 0px;
}

@media (max-width: 992px) {
    .doctor-box .contain .video-link {
        margin: 12px 0px;
    }
}

.doctor-box .contain .video-link img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width: 992px) {
    .doctor-box .contain .video-link img {
        width: 20px;
        height: 20px;
    }
}

.doctor-box .contain .video-link span {
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .doctor-box .contain .video-link span {
        font-size: 14px;
    }
}

.doctor-box .contain .tags {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.doctor-box .contain .tags li {
    width: -moz-fit-content;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .doctor-box .contain .tags li {
        font-size: 11px;
        padding: 3px 7px;
    }
}

.doctor-box .contain .custom-btn {
    width: 100%;
    height: 45px;
    margin-top: 20px;
}

.doctor-box:hover {
    transform: translateY(-10px);
}

.doctor-box:hover h3 {
    color: var(--primary-color);
}

.doctor-card {
    width: 100%;
    padding: 12px;
    background-color: var(--light-color);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    transition: all 0.3s linear;
}

.doctor-card .flex-data {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    width: 100%;
    gap: 15px;
}

@media (max-width: 992px) {
    .doctor-card .flex-data {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;
    }
}

.doctor-card .flex-data .user-img {
    width: 91px;
    height: 91px;
    border-radius: 20px;
    overflow: hidden;
}

.doctor-card .flex-data .user-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.doctor-card .flex-data .data {
    width: calc(100% - 91px);
}

@media (max-width: 992px) {
    .doctor-card .flex-data .data {
        width: 100%;
    }
}

.doctor-card .flex-data .data .flex-data {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 15px;
}

@media (max-width: 992px) {
    .doctor-card .flex-data .data .flex-data {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
}

.doctor-card .flex-data .data .flex-data h2 {
    font-size: 16px;
    font-weight: 900;
    color: var(--dark-color);
    margin: 0px;
}

.doctor-card .flex-data .data .flex-data .badge {
    width: -moz-fit-content;
    width: fit-content;
    padding: 5px 10px;
    background-color: #edf8f7;
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 500;
}

.doctor-card .flex-data .data .data-rate {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    margin: 4px 0px;
}

.doctor-card .flex-data .data .data-rate img {
    width: 81px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
}

.doctor-card .flex-data .data .data-rate span {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 500;
}

.doctor-card .flex-data .data .rate {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}

.doctor-card .flex-data .data .rate .date {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
}

.doctor-card .flex-data .data .rate .date img {
    width: 45px;
    height: 45px;
    -o-object-fit: contain;
    object-fit: contain;
}

.doctor-card .flex-data .data .rate .date .contain {
    width: calc(100% - 20px);
}

.doctor-card .flex-data .data .rate .date .contain span {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
    color: var(--gray-color);
}

.doctor-card .flex-data .data .rate .date .contain p {
    color: var(--dark-color);
    font-size: 13px;
    font-weight: 900;
    margin: 0px;
}

.doctor-card .button-contain {
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
}

.doctor-card .button-contain .custom-btn {
    width: calc(50% - 5px);
}

.doctor-card:hover {
    transform: translateY(-10px);
}

.doctor-card:hover h2 {
    color: var(--primary-color) !important;
}

.navbar {
    width: 100%;
    padding: 30px 0px;
    background-color: var(--light-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all 0.3s linear;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    padding: 13px 0px;
}

.navbar.scrolled .brand-name img {
    height: 40px;
}

@media (max-width: 992px) {
    .navbar.scrolled .navbar-nav {
        top: 66px !important;
    }
}

.navbar .contain {
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}

.navbar .contain .hamburger {
    display: none;
}

@media (max-width: 992px) {
    .navbar .contain .hamburger {
        display: block;
    }
}

.navbar .contain .hamburger .line {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    display: block;
    margin: 8px auto;
    transition: all 0.3s ease-in-out;
}

.navbar .contain .hamburger.active {
    transition: all 0.3s ease-in-out;
    transition-delay: 0.6s;
    transform: rotate(45deg);
}

.navbar .contain .hamburger.active .line:nth-child(2) {
    width: 0px;
}

.navbar .contain .hamburger.active .line:nth-child(1), .navbar .contain .hamburger.active .line:nth-child(3) {
    transition-delay: 0.3s;
}

.navbar .contain .hamburger.active .line:nth-child(1) {
    transform: translateY(6.5px);
}

.navbar .contain .hamburger.active .line:nth-child(3) {
    transform: translateY(-15px) rotate(90deg);
}

.navbar .contain .brand-name img {
    width: 150px;
    height: 45px;
    -o-object-fit: contain;
    object-fit: contain;
    transition: all 0.3s linear;
}

.navbar .contain .navbar-nav {
    flex-direction: row;
    gap: 36px;
}

@media (max-width: 992px) {
    .navbar .contain .navbar-nav {
        width: 100%;
        height: 100vh;
        background-color: var(--light-color);
        position: absolute;
        top: 105px;
        padding: 30px 15px;
        right: -100%;
        flex-direction: column;
        gap: 0px;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
        transition: all 0.3s linear;
    }

    .navbar .contain .navbar-nav.active-nav {
        right: 0px;
    }

    .navbar .contain .navbar-nav.active-nav .nav-item {
        opacity: 0;
        transform: translateY(10px);
        animation: fadeInSlide 0.5s ease-out forwards;
    }

    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(4) {
        animation-delay: 0.4s;
    }

    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(5) {
        animation-delay: 0.5s;
    }

    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(6) {
        animation-delay: 0.6s;
    }

    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(7) {
        animation-delay: 0.7s;
    }

    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(8) {
        animation-delay: 0.8s;
    }

    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(9) {
        animation-delay: 0.9s;
    }

    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(10) {
        animation-delay: 1s;
    }

    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(11) {
        animation-delay: 1.1s;
    }

    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(12) {
        animation-delay: 1.2s;
    }
}

.navbar .contain .navbar-nav .nav-item {
    padding: 0px;
    margin: 0px;
}

@media (max-width: 992px) {
    .navbar .contain .navbar-nav .nav-item {
        padding: 10px 0px;
        width: 100%;
        border-bottom: 1px solid rgba(45, 93, 99, 0.2);
    }

    .navbar .contain .navbar-nav .nav-item:last-child {
        border-bottom: 0px;
        padding-bottom: 0px;
    }

    .navbar .contain .navbar-nav .nav-item:first-child {
        padding-top: 0px;
    }
}

.navbar .contain .navbar-nav .nav-item.mobile-only {
    display: none;
}

@media (max-width: 992px) {
    .navbar .contain .navbar-nav .nav-item.mobile-only {
        display: block;
    }
}

.navbar .contain .navbar-nav .nav-item .nav-link {
    font-size: 15px;
    font-weight: 900;
    padding: 0px;
    color: var(--dark-color);
}

.navbar .contain .navbar-nav .nav-item .nav-link:hover, .navbar .contain .navbar-nav .nav-item .nav-link.active {
    color: var(--primary-color);
}

.navbar .contain .button-contain {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 992px) {
    .navbar .contain .button-contain.mobile-none {
        display: none;
    }
}

.navbar .contain .button-contain .data {
    font-size: 15px;
    font-weight: 900;
    color: var(--dark-color);
}

.navbar .contain .button-contain .lang {
    width: 50px;
    height: 50px;
    overflow: hidden;
    background-color: #f4f4f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.navbar .contain .button-contain .lang span {
    font-size: 15px;
    font-weight: 900;
    color: var(--secondary-color);
}

.navbar .contain .button-contain .lang:hover span {
    animation: fadeInLeft 0.3s ease-in-out forwards;
}

header {
    width: 100%;
    padding: 158px 0px 0px;
    position: relative;
    z-index: 9;
}

@media (max-width: 992px) {
    header {
        padding-top: 120px;
    }
}

header .swiper-wrapper {
    padding-bottom: 60px;
}

header .contain {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

header .contain .sub-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 16px;
}

@media (max-width: 992px) {
    header .contain .sub-title {
        font-size: 16px;
    }
}

header .contain .title {
    font-size: 35px;
    font-weight: 900;
    color: var(--dark-color);
    margin: 0px;
}

@media (max-width: 992px) {
    header .contain .title {
        font-size: 20px;
    }
}

header .contain .title span {
    font-size: 35px;
    font-weight: 900;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    header .contain .title span {
        font-size: 20px;
    }
}

header .contain .desc {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
    margin: 24px 0px 40px;
}

@media (max-width: 992px) {
    header .contain .desc {
        font-size: 15px;
        margin: 20px 0px 30px;
        text-align: justify;
    }
}

header .contain .sub-head {
    font-size: 24px;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 16px;
}

header .contain .sub-head span {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 24px;
}

@media (max-width: 992px) {
    header .contain .sub-head span {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    header .contain .sub-head {
        font-size: 18px;
    }
}

header .contain .social-media {
    margin-top: 24px;
}

@media (max-width: 992px) {
    header .contain .download-btn {
        justify-content: flex-start !important;
    }
}

header .image-contain {
    width: 100%;
    height: 420px;
    animation: translateY 1s linear infinite alternate;
}

@media (max-width: 992px) {
    header .image-contain {
        height: 300px;
    }
}

header .image-contain img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    object-position: right;
}

html[dir="rtl"] header .image-contain img {
    object-position: left;
}

@media (max-width: 992px) {
    header .image-contain img {
        object-position: center !important;
    }
}

.doctors .button-contain {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.doctors .button-contain .custom-btn {
    width: 250px;
}

.screens .heading {
    margin-bottom: 30px !important;
}

@media (max-width: 992px) {
    .screens .heading {
        margin-bottom: 20px !important;
    }
}

.screens .swiper-wrapper {
    padding: 20px 0px 40px;
}

.screens .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 495px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    transition: all 0.3s linear;
}

@media (max-width: 992px) {
    .screens .swiper-wrapper .swiper-slide img {
        height: 310px;
    }
}

.screens .swiper-wrapper .swiper-slide img:hover {
    transform: translateY(-10px);
}

.download .contain {
    width: 100%;
    padding: 40px 20px;
    background: linear-gradient(45deg, #1da79f, #bc664c);
    position: relative;
    z-index: 9;
    border-radius: 40px;
    overflow: hidden;
}

.download .contain::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../images/icons/download-pattern.webp") center/cover repeat-x;
    top: 0;
    left: 0;
    z-index: -1;
    animation: moving 120s linear infinite;
}

.download .contain .heading {
    margin-bottom: 30px !important;
}

.download .contain .download-btn {
    width: 100%;
    justify-content: center;
}

.review .heading {
    margin-bottom: 30px !important;
}

@media (max-width: 992px) {
    .review .heading {
        margin-bottom: 20px !important;
    }
}

.review .swiper-wrapper {
    padding: 20px 0px 50px;
}

.review .review-box {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    position: relative;
    z-index: 9;
    transition: all 0.3s linear;
    background-color: rgba(141, 211, 187, 0.08);
}

.review .review-box::after {
    content: "";
    position: absolute;
    width: 98%;
    height: 95%;
    background: #f9f9f9;
    border: 1px solid #ededed;
    top: 0px;
    right: 0px;
    z-index: -1;
    transition: all 0.3s linear;
    border-radius: 8px;
}

html[dir=ltr] .review .review-box::after {
    left: 0px;
    right: 0px;
}

.review .review-box .user-data {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.review .review-box .user-data .icon {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(45, 93, 99, 0.2);
    border-radius: 50%;
    overflow: hidden;
}

.review .review-box .user-data .icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.review .review-box .user-data .data h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.review .review-box .user-data .data .date {
    color: var(--gray-color);
    font-size: 14px;
    font-weight: 500;
    margin: 0px;
}

.review .review-box .desc {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    margin: 0px;
}

.review .review-box:hover {
    transform: translateY(-10px);
}

.review .review-box:hover::after {
    height: 100%;
    width: 100%;
}

.question .contain {
    width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
    align-content: center;
}

.question .contain img {
    width: 300px;
    height: 300px;
    -o-object-fit: contain;
    object-fit: contain;
    animation: translateY 1s ease-in-out infinite alternate;
    -o-object-position: center;
    object-position: center;
}

.question .contain .title {
    font-size: 30px;
    font-weight: 900;
    color: var(--secondary-color);
    margin: 20px 0px;
}

@media (max-width: 992px) {
    .question .contain .title {
        font-size: 20px;
    }
}

.question .contain .desc {
    font-size: 15px;
    margin: 0px;
    color: var(--gray-color);
    font-weight: 500;
}

.question .card {
    width: 100%;
    padding: 0px;
    border: 1px solid rgba(29, 167, 159, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .question .card {
        border-radius: 12px;
    }
}

.question .card:last-child {
    margin-bottom: 0px;
}

.question .card .card-header {
    width: 100%;
    padding: 0px;
    background-color: transparent;
    border-radius: 0px;
    border: 0px;
}

.question .card .card-header .btn {
    width: 100%;
    text-align: start;
    margin: 0px;
    text-decoration: none;
    font-size: 20px;
    position: relative;
    z-index: 9;
    font-weight: 900;
    color: var(--semiDark);
    padding: 24px 32px;
    display: flex;
    align-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.35);
    gap: 10px;
}

@media (max-width: 992px) {
    .question .card .card-header .btn {
        padding: 20px 15px;
        font-size: 14px;
        padding-inline-end: 50px;
    }
}

.question .card .card-header .btn span {
    font-size: 20px;
    font-weight: 900;
    color: var(--gray-color);
}

@media (max-width: 992px) {
    .question .card .card-header .btn span {
        font-size: 14px;
    }
}

.question .card .card-header .btn::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    background: url("../images/icons/question.svg") center/contain no-repeat;
    border-radius: 50%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    transition: all 0.3s linear;
    z-index: -1;
    top: calc(50% - 16px);
    left: 10px;
}

@media (max-width: 992px) {
    .question .card .card-header .btn::after {
        width: 20px;
        height: 20px;
        top: calc(50% - 10px);
    }
}

html[dir=ltr] .question .card .card-header .btn::after {
    right: 10px;
    left: unset;
}

.question .card .card-header .btn[aria-expanded=true] {
    background-color: rgba(29, 167, 159, 0.1);
    color: var(--primary-color);
}

.question .card .card-header .btn[aria-expanded=true] span {
    color: var(--primary-color);
}

.question .card .card-header .btn[aria-expanded=true]::after {
    transform: rotate(45deg);
}

.question .card .card-body {
    padding: 20px 32px 20px;
    border-radius: 0px;
    border: 0px;
    background-color: var(--light-color);
}

@media (max-width: 992px) {
    .question .card .card-body {
        padding: 0px 10px 15px;
    }
}

.question .card .card-body p {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    margin: 0px;
}

.contact-us {
    width: 100%;
    position: relative;
}

.contact-us .map-contain {
    position: relative;
    z-index: 99;
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .contact-us .map-contain {
        border-radius: 20px;
    }
}

.contact-us .map-contain iframe {
    width: 100%;
    height: 600px;
    position: relative;
}

.contact-us .map-contain .contact-data {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 40px;
    overflow: hidden;
    padding: 50px 50px 50px 30px;
    background-color: var(--primary-color);
    z-index: 99;
}

@media (max-width: 992px) {
    .contact-us .map-contain .contact-data {
        padding: 30px 15px;
        border-radius: 20px;
    }
}

.contact-us .map-contain .contact-data li {
    width: 100%;
    margin-bottom: 20px;
}

.contact-us .map-contain .contact-data li:last-child {
    margin-bottom: 0px !important;
}

.contact-us .map-contain .contact-data li .social-media {
    width: -moz-fit-content;
    width: fit-content;
}

.contact-us .map-contain .contact-data li .social-media li {
    margin: 0px;
}

.contact-us .map-contain .contact-data li .data-contain {
    width: 100%;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s linear;
}

.contact-us .map-contain .contact-data li .data-contain img {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
}

.contact-us .map-contain .contact-data li .data-contain .data {
    width: calc(100% - 55px);
}

.contact-us .map-contain .contact-data li .data-contain .data p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-us .map-contain .contact-data li .data-contain .data .item {
    color: var(--light-color);
    font-size: 20px;
    font-weight: 900;
    display: inline-block;
}

.contact-us .map-contain .contact-data li .data-contain .data .item.margin {
    margin: 0px 5px;
}

.contact-us .map-contain .contact-data li .data-contain:hover {
    transform: translateY(-10px);
}

.contact-us .map-contain .contact-data li .data-contain:hover img {
    animation: tada 0.3s linear;
}

.contact-us .contact-form {
    width: 100%;
    border-radius: 40px;
    padding: 55px 80px;
    border: 1px solid rgba(29, 167, 159, 0.06);
}

@media (max-width: 992px) {
    .contact-us .contact-form {
        padding: 20px 15px;
        border-radius: 20px;
    }
}

.contact-us .contact-form h2 {
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(29, 167, 159, 0.1);
    font-size: 35px;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .contact-us .contact-form h2 {
        margin-bottom: 20px;
        padding-bottom: 20px;
        font-size: 20px;
    }
}

.contact-us .contact-form .from-contain {
    width: 100%;
}

.contact-us .contact-form .from-contain .form-group {
    width: 100%;
    height: 50px;
    position: relative;
    margin-bottom: 10px;
}

.contact-us .contact-form .from-contain .form-group.text-area {
    height: 100px;
    margin-bottom: 34px;
}

.contact-us .contact-form .from-contain .form-group.text-area .form-control {
    border-radius: 20px;
}

.contact-us .contact-form .from-contain .form-group .form-control {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background-color: rgba(29, 167, 159, 0.03);
    border: 0px;
    padding-inline-start: 24px;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 700;
    resize: none;
}

.contact-us .contact-form .from-contain .form-group .form-control::-moz-placeholder {
    color: var(--gray-color);
    font-size: 16px;
    font-weight: 700;
}

.contact-us .contact-form .from-contain .form-group .form-control::placeholder {
    color: var(--gray-color);
    font-size: 16px;
    font-weight: 700;
}

.contact-us .contact-form .from-contain .form-group .form-control:hover, .contact-us .contact-form .from-contain .form-group .form-control:active {
    background-color: rgba(29, 167, 159, 0.1);
}

.contact-us .contact-form .from-contain .custom-btn {
    margin: auto;
}

footer {
    width: 100%;
    padding: 40px 0px 10px;
    background-color: #fbfbf9;
    position: relative;
    z-index: 9;
}

footer .contain {
    text-align: center;
    width: 60%;
    margin: 0px auto;
}

@media (max-width: 992px) {
    footer .contain {
        width: 100%;
    }
}

footer .contain .brand-name img {
    width: 114px;
    height: 150px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    margin: 0px auto;
}

footer .contain h2 {
    color: var(--semiDark);
    font-size: 32px;
    font-weight: 900;
    margin: 15px 0px;
}

footer .contain p {
    color: var(--gray-color);
    font-size: 18px;
    font-weight: 700;
    margin: 0px;
}

@media (max-width: 992px) {
    footer .contain p {
        width: 100%;
    }
}

footer .contain .links {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

footer .contain .links li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
}

footer .contain .social-media {
    width: 100%;
    justify-content: center;
    margin: 20px 0px;
}

footer .contain .download-btn {
    justify-content: center;
    width: 100%;
}

footer .copyrights {
    width: 100%;
    margin-top: 40px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 992px) {
    footer .copyrights {
        justify-content: center;
        text-align: center;
    }
}

footer .copyrights .company {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}

footer .copyrights .company span {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-color);
}

footer .copyrights .company img {
    width: 102px;
    height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
}

footer .copyrights p {
    color: var(--gray-color);
    font-size: 16px;
    font-weight: 500;
    margin: 0px;
}

footer .copyrights p span {
    font-weight: 900;
    color: var(--primary-color);
}

.fixed-icon {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 99;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

html[dir=ltr] .fixed-icon {
    left: unset;
    right: 10px;
}

.fixed-icon .whats {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #4a9551;
    display: flex;
    align-content: center;
    align-items: center;
}

.fixed-icon .whats img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}

.fixed-icon .call {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.fixed-icon .call img {
    width: 15px;
    height: 15px;
    -o-object-fit: contain;
    object-fit: contain;
    filter: var(--light-filter);
    display: block;
}

.sub-header {
    width: 100%;
    padding: 180px 0px 60px;
    background: url("../images/icons/sub-header.png") center/cover no-repeat;
    position: relative;
    z-index: 9;
}

.sub-header .sub-header-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}

.sub-header.large-header {
    padding: 280px 0px 100px;
}

@media (max-width: 992px) {
    .sub-header {
        padding: 120px 0px 40px;
    }
}

.sub-header .heading {
    margin: 0px;
    width: 100%;
}

.sub-header .heading .title {
    color: var(--light-color);
}

.sub-header .heading .desc {
    color: var(--light-color);
}

.sub-header .image-contain {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
}

.sub-header .image-contain img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.sub-header .contain {
    width: 100%;
    text-align: start;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.sub-header .contain .heading {
    text-align: start;
    margin: 0px;
    width: 100%;
}

.about-us .box {
    width: 100%;
    height: 100%;
    padding: 20px 15px;
    background-color: var(--light-color);
    border-radius: 15px;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s linear;
}

.about-us .box h3 {
    font-size: 30px;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-us .box p {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 500;
    margin: 0px;
}

.about-us .box:hover {
    transform: translateY(-10px);
}

.about-us .box:hover h3 {
    color: var(--primary-color);
}

.why .box {
    width: 100%;
    height: 100%;
    padding: 30px 15px;
    background: url("../images/icons/sub-header.png") center/cover no-repeat;
    border-radius: 20px;
    position: relative;
    z-index: 9;
    transition: all 0.3s linear;
}

.why .box h3 {
    color: var(--light-color);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 15px;
}

.why .box p {
    color: var(--light-color);
    opacity: 0.75;
    font-size: 15px;
    font-weight: 500;
    margin: 0px;
}

.why .box:hover {
    transform: translateY(-10px);
}

.nav.nav-tabs {
    border: 0px;
    margin-bottom: 0px;
    padding-bottom: 4px;
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: scroll;
    overflow-y: hidden;
    margin-bottom: 0px;
}

.nav.nav-tabs::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.nav.nav-tabs::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.7) !important;
}

.nav.nav-tabs.margin-shape {
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .nav.nav-tabs.margin-shape {
        margin-bottom: 30px;
    }
}

.nav.nav-tabs li {
    padding: 0px;
    margin: 0px;
}

.nav.nav-tabs li .nav-link {
    width: 100%;
    min-width: 150px;
    height: 60px;
    padding: 0px 10px;
    border-radius: 10px;
    background-color: var(--light-color);
    border: 1px solid #e4e4e6;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--semiDark-color);
}

@media (max-width: 992px) {
    .nav.nav-tabs li .nav-link {
        font-size: 10px;
        height: 40px;
    }
}

.nav.nav-tabs li .nav-link:hover {
    box-shadow: 0px 0px 10px rgba(29, 167, 159, 0.1);
}

.nav.nav-tabs li .nav-link.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--light-color);
}

.tab-pane.fade.show.active {
    animation: fadeInSlide 0.4s ease-in-out;
}

.blog-box {
    width: 100%;
    border-radius: 32px;
    border: 1px solid #e5e5e5;
    position: relative;
    z-index: 9;
    overflow: hidden;
    padding: 16px;
    margin-bottom: 20px;
    transition: all 0.3s linear;
}

@media (max-width: 992px) {
    .blog-box {
        padding: 10px 5px;
        border-radius: 15px;
    }
}

.blog-box .image-contain {
    width: 100%;
    height: 205px;
    border-radius: 16px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .blog-box .image-contain {
        border-radius: 10px;
    }
}

.blog-box .image-contain img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.blog-box .date {
    width: -moz-fit-content;
    width: fit-content;
    padding: 8px 15px;
    background-color: #fef3dc;
    box-shadow: 0 0 0 5px rgba(29, 167, 159, 0.1);
    border: 1px solid rgba(246, 171, 22, 0.1);
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 40px;
    right: 0;
}

html[dir=ltr] .blog-box .date {
    left: 0;
    right: unset;
}

.blog-box .date img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}

.blog-box .date span {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.blog-box .contain {
    width: 100%;
    padding-top: 16px;
}

.blog-box .contain h2 {
    font-size: 22px;
    font-weight: 900;
    color: var(--semiDark);
    margin: 0px;
    line-height: 40px;
}

@media (max-width: 992px) {
    .blog-box .contain h2 {
        font-size: 16px;
    }
}

.blog-box .contain p {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 500;
    margin: 16px 0px 22px;
}

@media (max-width: 992px) {
    .blog-box .contain p {
        margin: 15px 0px;
        font-size: 10px;
    }
}

.blog-box:hover {
    transform: translateY(-10px);
    border-color: rgba(29, 167, 159, 0.1);
    box-shadow: 0 0 0 5px rgba(29, 167, 159, 0.04);
}

.blog-box:hover h2 {
    color: var(--primary-color);
}

.single-blog .date {
    width: -moz-fit-content;
    width: fit-content;
    padding: 8px 15px;
    background-color: #fef3dc;
    border: 1px solid rgba(29, 167, 159, 0.1);
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}

.single-blog .date img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}

.single-blog .date span {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.single-blog .flex-head {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .single-blog .flex-head {
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
    }
}

.single-blog .image-contain {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    z-index: 9;
}

@media (max-width: 992px) {
    .single-blog .image-contain {
        height: 230px;
    }
}

.single-blog .image-contain img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.single-blog .share {
    padding: 20px 15px;
    border-radius: 10px;
    margin-top: 20px;
    background: var(--primary-color);
}

.single-blog .share .social-media {
    justify-content: center;
}

.single-blog .share li {
    font-size: 15px;
    font-weight: 500;
    color: var(--light-color);
}

.single-blog h2 {
    font-size: 20px;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .single-blog h2 {
        font-size: 17px;
        line-height: 30px;
    }
}

.single-blog .type {
    width: -moz-fit-content;
    width: fit-content;
    padding: 9px 24px;
    background-color: rgba(29, 167, 159, 0.1);
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
    border-radius: 6px;
}

.modal-dialog {
    width: 100%;
    border: 0px;
    padding: 0px;
    border-radius: 0px;
}

.modal-dialog.big-modal {
    min-width: 700px;
}

.modal-dialog .modal-content {
    width: 100%;
    border: 0px;
    padding: 0px;
    border-radius: 20px !important;
}

.modal-dialog .modal-content .modal-body {
    width: 100%;
    border: 0px;
    padding: 0px;
    border-radius: 20px !important;
}

.modal-dialog .modal-content .modal-body .contain {
    width: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    border-radius: 20px !important;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.modal-dialog .modal-content .modal-body .contain .icon {
    width: 85px;
    height: 85px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 20px;
}

.modal-dialog .modal-content .modal-body .contain .brand-name {
    width: 190px;
    height: 50px;
    margin: 0px auto 30px;
}

.modal-dialog .modal-content .modal-body .contain .brand-name img {
    width: 100% !important;
    height: 100% !important;
    margin-bottom: 0px;
    -o-object-fit: contain;
    object-fit: contain;
}

.modal-dialog .modal-content .modal-body .contain span.danger {
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-top: 15px;
    color: var(--primary-color);
}

.modal-dialog .modal-content .modal-body .contain h1 {
    font-size: 18px;
    font-weight: 900;
    color: var(--dark-color);
    margin: 0px;
}

.modal-dialog .modal-content .modal-body .contain p {
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
}

.doctor-details {
    padding-top: 0px !important;
    margin-top: -150px;
}

.doctor-details .doctor-data {
    width: 100%;
    padding: 40px 70px;
    background-color: var(--light-color);
    border-radius: 40px;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
    .doctor-details .doctor-data {
        padding: 20px 15px;
        border-radius: 20px;
    }
}

.doctor-details .doctor-data .user-data {
    width: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    gap: 32px;
}

@media (max-width: 992px) {
    .doctor-details .doctor-data .user-data {
        flex-wrap: wrap;
        gap: 5px;
        align-items: flex-start;
        align-content: flex-start;
    }
}

.doctor-details .doctor-data .user-data .image-contain {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    padding: 10px;
    border: 1px solid var(--primary-color);
}

@media (max-width: 992px) {
    .doctor-details .doctor-data .user-data .image-contain {
        width: 80px;
        height: 80px;
    }
}

.doctor-details .doctor-data .user-data .image-contain img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 992px) {
    .doctor-details .doctor-data .user-data .data {
        width: calc(100% - 85px);
    }
}

.doctor-details .doctor-data .user-data .flex-data {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.doctor-details .doctor-data .user-data .flex-data h1 {
    font-size: 32px;
    font-weight: 900;
    color: var(--dark-color);
    margin: 0px;
}

@media (max-width: 992px) {
    .doctor-details .doctor-data .user-data .flex-data h1 {
        font-size: 14px;
    }
}

.doctor-details .doctor-data .user-data .flex-data .badge {
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    padding: 5px 10px;
    background-color: #edf8f7;
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .doctor-details .doctor-data .user-data .flex-data .badge {
        font-size: 13px;
    }
}

.doctor-details .doctor-data .user-data .list {
    display: flex;
    align-content: center;
    align-items: center;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0px 15px;
}

@media (max-width: 992px) {
    .doctor-details .doctor-data .user-data .list {
        -moz-column-gap: 15px;
        column-gap: 15px;
        row-gap: 5px;
        margin: 10px 0px;
    }
}

.doctor-details .doctor-data .user-data .list li {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 5px;
}

.doctor-details .doctor-data .user-data .list li img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width: 992px) {
    .doctor-details .doctor-data .user-data .list li img {
        width: 17px;
        height: 17px;
    }
}

.doctor-details .doctor-data .user-data .list li span {
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .doctor-details .doctor-data .user-data .list li span {
        font-size: 13px;
    }
}

.doctor-details .doctor-data .user-data .list li span.gray {
    color: var(--gray-color);
}

.doctor-details .doctor-data .user-data .list li span.dark {
    color: var(--dark-color);
}

.doctor-details .doctor-data .user-data .list li span.primary {
    font-weight: 900;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .doctor-details .doctor-data .user-data .list li span.primary {
        font-weight: 700;
    }
}

.doctor-details .doctor-data .user-data .stars-rate {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 4px;
}

.doctor-details .doctor-data .user-data .stars-rate img {
    width: 13px;
    height: 13px;
    -o-object-fit: contain;
    object-fit: contain;
}

.doctor-details .doctor-data .user-data .stars-rate span {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-color);
    margin-inline-start: 10px;
}

@media (max-width: 992px) {
    .doctor-details .doctor-data .user-data .stars-rate span {
        font-weight: 500;
    }
}

.doctor-details .doctor-data .categories {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.doctor-details .doctor-data .categories li {
    width: -moz-fit-content;
    width: fit-content;
    padding: 5px 10px;
    background-color: #f5efea;
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
}

.doctor-details .doctor-data .flex-button {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.doctor-details .doctor-data .custom-btn {
    width: 100%;
}

.doctor-details .doctor-data .custom-btn:first-child {
    margin-bottom: 15px;
}

.doctor-details .nav {
    width: 100%;
    padding: 20px 15px;
    border: 1px solid rgba(29, 167, 159, 0.1);
    background: #fff;
    border-radius: 20px;
    margin: 30px 0px;
    overflow: hidden;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 15px;
}

@media (max-width: 992px) {
    .doctor-details .nav {
        margin: 15px 0px;
        padding: 10px 5px;
        border-radius: 10px;
    }
}

.doctor-details .nav li {
    width: calc(33.3333333333% - 15px) !important;
    position: relative;
    padding: 0px;
}

@media (max-width: 992px) {
    .doctor-details .nav li {
        width: 100px !important;
        max-width: 100px !important;
    }
}

.doctor-details .nav li a {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 10px;
    min-width: 100% !important;
    padding: 0px;
    background-color: var(--light-color);
    font-size: 15px;
    border: 0px !important;
    font-weight: 500;
    color: var(--dark-color);
}

.doctor-details .nav li a.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.doctor-details .tab-pane.fade {
    padding: 15px 10px;
    background-color: var(--light-color);
    border: 1px solid rgba(29, 167, 159, 0.1);
    border-radius: 20px;
}

@media (max-width: 992px) {
    .doctor-details .tab-pane.fade {
        padding: 10px 5px;
        border-radius: 15px;
    }
}

.doctor-details .tab-pane.fade.show.active {
    animation: fadeInSlide 0.4s ease-in-out;
}

.doctor-details .head {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.doctor-details .head img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}

.doctor-details .head h2 {
    font-size: 24px;
    margin: 0px;
    font-weight: 900;
    color: var(--dark-color);
}

.doctor-details .about-doctor {
    width: 100%;
    padding: 23px 40px;
    background-color: #f9fafc;
    border-radius: 20px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .doctor-details .about-doctor {
        padding: 20px 15px;
        margin-bottom: 20px;
        border-radius: 10px;
    }
}

.doctor-details .about-doctor:last-child {
    margin-bottom: 0px;
}

.doctor-details .about-doctor .box {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.doctor-details .about-doctor .box.border-data {
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    z-index: 9;
}

.doctor-details .about-doctor .box.border-data::after {
    content: "";
    position: absolute;
    width: 30%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0px;
    left: 35%;
    z-index: -1;
}

.doctor-details .about-doctor .box img {
    width: 50px;
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (min-width: 992px) {
    .doctor-details .about-doctor .box .data {
        width: calc(100% - 70px);
    }
}

.doctor-details .about-doctor .box .data h3 {
    font-size: 15px;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.doctor-details .about-doctor .box .data .name {
    color: var(--primary-color);
    font-size: 15px;
    display: block;
    margin: 15px 0px;
    font-weight: 500;
}

.doctor-details .about-doctor .box .data .date {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-color);
}

.doctor-details .about-doctor .box .data .see-certificate {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.doctor-details .about-doctor .box .data .see-certificate img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}

.doctor-details .about-doctor .box .data .see-certificate span {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
}

.doctor-details .about-doctor .box .data .see-certificate:hover img {
    animation: tada 0.3s linear both;
}

.doctor-details .about-doctor p {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 500;
    margin: 0px;
}

.doctor-details .days {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .doctor-details .days {
        gap: 10px;
    }
}

.doctor-details .days a {
    width: 80px;
    height: 170px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 100px;
    background-color: rgba(243, 244, 246, 0.5);
    border: 1px solid rgba(29, 167, 159, 0.1);
    padding: 15px 10px 10px;
    align-content: center;
    align-items: center;
}

@media (max-width: 992px) {
    .doctor-details .days a {
        width: 58px;
        height: 120px;
    }
}

.doctor-details .days a span {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
}

.doctor-details .days a .date {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: var(--light-color);
    color: var(--dark-color);
    border-radius: 50%;
}

@media (max-width: 992px) {
    .doctor-details .days a .date {
        width: 40px;
        height: 40px;
    }
}

.doctor-details .days a.active {
    background-color: var(--light-color);
    border-color: var(--primary-color);
}

.doctor-details .days a.active .date {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.doctor-details .rate {
    width: 100%;
    padding: 15px 10px;
    background-color: var(--light-color);
    border-radius: 20px;
    border: 1px solid rgba(29, 167, 159, 0.1);
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s linear;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .doctor-details .rate {
        padding: 10px 5px;
        border-radius: 10px;
    }
}

.doctor-details .rate:last-child {
    margin-bottom: 0px;
}

.doctor-details .rate:hover {
    transform: translateY(-10px);
}

.doctor-details .rate .user-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

@media (max-width: 992px) {
    .doctor-details .rate .user-img {
        width: 50px;
        height: 50px;
    }
}

.doctor-details .rate .user-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.doctor-details .rate .data {
    width: calc(100% - 100px);
}

@media (max-width: 992px) {
    .doctor-details .rate .data {
        width: calc(100% - 120px);
    }
}

.doctor-details .rate .data .item h2 {
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 15px;
}

.doctor-details .rate .data .item .session {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}

.doctor-details .rate .data .item .session img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}

.doctor-details .rate .data .item .session span {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-color);
}

.doctor-details .rate .stars {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}

.doctor-details .rate .stars img {
    width: 15px;
    height: 15px;
}

.doctor-details .rate .stars span {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-color);
}

.doctor-details .times {
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.doctor-details .times a {
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: var(--light-color);
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    border-radius: 50px;
    border: 1px solid rgba(29, 167, 159, 0.1);
}

@media (min-width: 992px) {
    .doctor-details .times a {
        width: 220px;
    }
}

.doctor-details .times a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.pagination-list {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-list span {
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 500;
}

.pagination-list a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(29, 167, 159, 0.1);
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
}

.pagination-list a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.pagination-list a.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

@media (max-width: 999px) {
    .order-mobile-0 {
        order: 0;
    }

    .order-mobile-1 {
        order: 1;
    }
}

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