:root {
    --main-green: #2a9845;
    --main-light-green: #59C38B;
    --main-lighten-green: #EAF5EC;
    --main-lighten-green-2: #81D39F;

    --main-blue: #2E3192;
    --main-violet-blue: #3D3DA8;
    --white: #ffffff;
    --dark: #121212;
    --yellow: #F5A800;
    --dark-rgb: 18, 18, 18;
    --white-rgb: 255, 255, 255;
    --gray: #b0b0b0;
    --lighten-gray: rgba(249, 249, 249, 1);
    --radius: 8px;
    /* --sidebar-width: 290px; */
    --sidebar-width: 240px;
    --sidebar-collapsed-width: 80px;
}


/*-----------Start General-----------*/
body {
    font-family: "Roboto", sans-serif;
    color: var(--dark);
    font-weight: 300;
    font-size: 18px;
}

a {
    text-decoration: none;
}

.text-green {
    color: var(--main-green);
}

.text-blue {
    color: var(--main-blue);
}

.text-light-green {
    color: var(--main-light-green);
}

.future-tooltip .tooltip-inner {
    background: var(--main-violet-blue);
}

.future-tooltip {
    --bs-tooltip-bg: var(--main-violet-blue);
}

.fs-48 {
    font-size: calc(1.325rem + 1.9vw) !important;
}

.fs-14 {
    font-size: 14px;
}

.fs-12 {
    font-size: 12px;
}

@media (min-width: 1200px) {
    .fs-48 {
        font-size: 3rem !important;
    }
}

.space-10 {
    height: 10px;
}

.space-15 {
    height: 15px;
}

.space-20 {
    height: 20px;
}

.space-25 {
    height: 25px;
}

.space-30 {
    height: 30px;
}

.space-40 {
    height: 40px;
}

.space-50 {
    height: 50px;
}

.space-100 {
    height: 100px;
}

.padding-100 {
    padding-block: 100px;
}

.padding-inline-100 {
    padding-inline: 100px;
}

.padding-top-100 {
    padding-top: 100px;
}

.padding-150 {
    padding-block: 150px;
}

.padding-top-150 {
    padding-top: 150px;
}

.padding-bottom-250 {
    padding-bottom: 250px;
}

.mt--150 {
    margin-top: -150px;
}

.fw-400 {
    font-weight: 400;
}

.btn {
    /* outline: none !important;
    box-shadow: none !important; */
}

.btn-close {
    box-shadow: none !important;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .icon {
    position: absolute;
    /* right: 10px; */
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-with-icon.left-icon .form-control {
    padding-inline-start: 45px;
}

.input-with-icon.left-icon .icon {
    left: 5px;
}

.input-with-icon.right-icon .form-control {
    padding-inline-end: 45px;
}

.input-with-icon.right-icon .icon {
    right: 5px;
}

.form-control {
    box-shadow: none !important;
    outline: none !important;
    height: 44px;
    border: 1px solid #e6e6e6;
    border-radius: var(--radius);
    padding-inline: 16px;
}

.form-control-xl {
    height: 54px;
}

.form-control::placeholder {
    color: rgba(var(--dark-rgb), 0.3);
}

.form-control.gray {
    background: rgba(var(--dark-rgb), 0.05);
    border-color: transparent;
}

.form-control.white-border {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.form-control.white-border::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

textarea.form-control {
    height: auto;
}

.form-control:focus {
    border-color: var(--main-green);
}

.form-control.white-border:focus {
    border-color: var(--white);
}

.form-check-input {
    box-shadow: none !important;
}

.form-check-input:focus {
    border-color: transparent;
}

.form-check-label {
    user-select: none;
}

.form-check-input:checked {
    background-color: var(--main-green);
    border-color: var(--main-green);
}

.rounded-btn {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.btn-primary-future {
    background: var(--main-green);
    border: 1px solid var(--main-green) !important;
    color: var(--white);
}

.btn-primary-future.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}

.btn-primary-future:hover {
    background: var(--main-violet-blue);
    border-color: var(--main-violet-blue) !important;
    color: var(--white);
}

.btn-outline-dark {
    border: 1px solid rgba(var(--dark-rgb), 0.2);
}

.btn-outline-dark:hover {
    background: var(--main-blue);
    color: var(--white);
    border-color: transparent;
}

.btn-outline-dark:hover i {
    color: var(--white);
}

/* .btn-primary-future:hover i {
    color: var(--main-green);
} */
.avatar-group {
    display: flex;
}

.avatar-group .avatar {
    max-width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border: 2px solid var(--white);
    margin-inline-start: -8px;
    border-radius: 50%;
}

.avatar-group .avatar:first-child {
    margin: 0;
}

.avatar-group .all-avatar {
    color: var(--white);
    background: var(--main-green);
    border-radius: 30px;
    height: 36px;
    padding-inline: 14px;
    display: flex;
    align-items: center;
    font-weight: 400;
    border: 2px solid var(--white);
    margin-inline-start: -8px;
}

.custom-hr {
    border-color: #e6e6e6;
    opacity: 1;
}

.bg-blue .custom-hr {
    opacity: 0.1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.9rem;
    justify-content: center;
    font-weight: 500;
}

.scroll-icon {
    width: 20px;
    height: 32px;
    border: 2px solid var(--white);
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 4px;
    height: 4px;
    background-color: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}


.back-to-top {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-green);
    color: var(--white);
    font-size: 20px;
    border-radius: var(--radius);
    right: 30px;
    bottom: 50px;
    position: fixed;
    text-decoration: none;
    transition: all ease 0.3s;
    z-index: 5;
}

.bg-blue {
    background: var(--main-blue);
}

.bg-lighten-green {
    background: var(--main-lighten-green);
}

.bg-green {
    background: var(--main-green);
}

.masked-number-wrapper {
    position: relative;
    z-index: 1;
    font-size: 230px;
    font-weight: 900;
    line-height: 0.9;
    width: fit-content;
    margin: 0 auto;
}

.masked-number {
    position: relative;
    background: url('../img/mask.png') center center;
    background-attachment: fixed;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: cover;
    display: inline-block;
    z-index: 1;
}


.masked-number-wrapper:after {
    content: attr(data-number);
    -webkit-text-stroke: 1px var(--main-lighten-green-2);
    position: absolute;
    left: 12px;
    color: transparent;
    z-index: -1;
    top: -4px;
    opacity: 0.8;
}

.masked-number-wrapper.blue .masked-number {
    color: var(--main-blue);
}

.masked-number-wrapper.blue:after {
    -webkit-text-stroke: 1px var(--main-blue);
    top: 8px;
}

.section-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.5;
}

.bg-section {
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-section .title {
    font-size: 60px;
}

.bg-overlly {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.bg-overlly:after {
    content: '';
    inset: 0;
    background: var(--dark);
    opacity: 0.7;
    z-index: -1;
    position: absolute;
}

.link-hover,
.link-hover i {
    transition: all ease 0.3s;
}

.link-hover:hover {
    color: var(--main-green) !important;
}

.link-hover:hover i {
    margin-inline-start: 10px;
}

/* .fs-5{

} */
.hero-doctor {
    padding-top: 120px;
}


.progress.sm-progress {
    height: 8px;
}

.progress.sm-progress .progress-bar {
    border-radius: 10px;
}

/*---Start Select2 Style 1---*/
.select2-style-1 {
    position: relative;
}

.select2-style-1 .select2-container:focus,
.select2-style-1 .select2-selection {
    box-shadow: none;
    outline: none;
}

.select2-style-1 .select2-container .selection .select2-selection {
    height: 44px;
    /* background: var(--main-background); */
    background: transparent;
    transition: all ease 0.3s;
    border: 1px solid #e6e6e6;
    border-radius: var(--radius);
}

.select2-style-1.gray .select2-container .selection .select2-selection {
    background: rgba(var(--dark-rgb), 0.05);
    border-color: transparent;
}

.select2-style-1.white-border .select2-container .selection .select2-selection {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
}

/* .select2-style-1 .select2-container.select2-container--open .selection .select2-selection{
} */

.select2-style-1 .select2-container.select2-container--open .selection .select2-selection {
    border-color: var(--main-green);
    border-radius: var(--radius) var(--radius) 0 0;
}

.select2-style-1.white-border .select2-container.select2-container--open .selection .select2-selection {
    border-color: var(--white);
}

.select2-style-1 .select2-container.select2-container--open.select2-container--above .selection .select2-selection {
    border-radius: 0 0 var(--radius) var(--radius);
}

.select2-style-1 .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: rgba(var(--dark-rgb), 0.3);
}

.select2-style-1.white-border .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.select2-style-1 .select2-container .selection .select2-selection .select2-selection__rendered {
    line-height: 44px;
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    padding-inline: 16px 24px;
    padding-inline-end: 35px;
}

.select2-style-1.white-border .select2-container .selection .select2-selection .select2-selection__rendered {
    color: var(--white);
}

.select2-style-1 .select2-container .selection .select2-selection .select2-selection__clear {
    margin: 0 20px;
    font-size: 30px;
    font-weight: 400;
    line-height: 32px;
}

.select2-style-1 .select2-container .selection .select2-selection .select2-selection__arrow {
    height: 44px;
    width: 40px;
}

.select2-style-1 .select2-container .selection .select2-selection .select2-selection__arrow b {
    border: solid var(--main-green);
    border-width: 0 2px 2px 0;
    padding: 4px;
    transform: rotate(45deg);
    top: 15px;
    transition: all 0.3s ease;
}

.select2-style-1 .select2-container--open .selection .select2-selection .select2-selection__arrow b {
    top: 20px;
    transform: rotate(225deg);
}


.select2-style-1.select-xl .select2-container .selection .select2-selection,
.select2-style-1 .select2-container .selection .select2-selection .select2-selection__arrow {
    height: 54px;
}

.select2-style-1.select-xl .select2-container .selection .select2-selection .select2-selection__rendered {
    line-height: 54px;
}

.select2-style-1.select-xl .select2-container .selection .select2-selection .select2-selection__arrow b {
    top: 20px;
    border-color: var(--white);
}

.select2-style-1.select-xl.dark-arrow .select2-container .selection .select2-selection .select2-selection__arrow b {
    border-color: var(--dark);
}

.select2-style-1.select-xl .select2-container--open .selection .select2-selection .select2-selection__arrow b {
    top: 25px;
}

.select2-dropdown-style-1.select2-dropdown {
    box-shadow: none;
    border: none;
    border: 1px solid #e6e6e6;
    border-radius: var(--radius);
    overflow: hidden;
}

.select2-dropdown-style-1.select2-dropdown.select2-dropdown--below {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: 0;
}

.select2-dropdown-style-1.select2-dropdown.select2-dropdown--above {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0;
}


.select2-dropdown-style-1.select2-dropdown .select2-search {
    background: #fbfbfb;
}

.select2-dropdown-style-1.select2-dropdown .select2-search .select2-search__field {
    border: 2px solid #F3F3F3;
}

.select2-dropdown-style-1.select2-dropdown .select2-search .select2-search__field:focus {
    outline: 0 !important;
}

.select2-dropdown-style-1.select2-dropdown .select2-results .select2-results__options .select2-results__option {
    color: var(--main-white-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-transform: capitalize;
    /* border-bottom: solid 1px #263f52; */
    padding: 10px 16px;
    background: var(--white);
}

.select2-dropdown-style-1.select2-dropdown .select2-results .select2-results__options .select2-results__option:last-child {
    border: none;
}

.select2-dropdown-style-1.select2-dropdown .select2-results .select2-results__options .select2-results__option[aria-disabled=true] {
    color: #ddd;
    cursor: not-allowed;
}

.select2-dropdown-style-1.select2-dropdown .select2-results .select2-results__options .select2-results__option--highlighted[aria-selected] {
    background: rgba(0, 0, 0, 0.1);
}

.select2-dropdown-style-1.select2-dropdown .select2-results .select2-results__options .select2-results__option[aria-selected=true] {
    background: var(--main-lighten-green);
    color: var(--dark);
}

.select2-dropdown-style-1.select2-dropdown .select2-results .select2-results__options .select2-results__option--selected {
    background: var(--main-green) !important;
    color: var(--white) !important;
}

/*---End Select2 Style 1---*/




.future-radio-group .form-check {
    padding: 0;
}

.future-radio-group .form-check-label {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 12px 24px;
    background-color: transparent;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    flex: 1;
    transition: border-color 0.3s, background-color 0.3s;
}

.future-radio-group input[type="radio"] {
    display: none;
}

.future-radio-group input[type="radio"]:checked+.form-check-label {
    border-color: var(--main-green);
    background: var(--main-lighten-green);
}

.w-130 {
    width: 130%;
}

/*-----------End General-----------*/

/*-----------Start Header-----------*/
.future-header {
    position: absolute;
    left: 0;
    right: 0;
    transition: all 0.3s ease;
    z-index: 3;
    background: var(--white);
}

.future-header.sticky {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.future-header.sticky .navbar-brand {
    width: 90px;
}

.future-header .nav-item .nav-link {
    position: relative;
    display: flex;
    align-items: center;
}

.future-header .nav-item:last-child:before {
    content: '';
    width: 1px;
    height: 16px;
    background: var(--gray);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.future-header .nav-item .nav-link {
    font-weight: 400;
    color: var(--dark);
    padding-inline: 12px;
}

.future-header .nav-item .nav-link:hover,
.future-header .nav-item .nav-link.active {
    color: var(--main-green);
}

.future-header .navbar-toggler {
    outline: none;
    box-shadow: none;
}


.dropdown-menu {
    padding: 12px;
    border-color: rgba(var(--dark-rgb), 0.1);
    border-radius: 10px;
    box-shadow: 0px 20px 72px 0px rgba(0, 0, 0, 0.12);
    display: block;
    opacity: 0;
    visibility: hidden;
    margin-top: 10px;
    transition: all ease 0.3s;
}

.dropdown-menu.show {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
}

.dropdown-menu .dropdown-item {
    padding: 10px 16px;
    border-radius: 8px;
}

.dropdown-menu .dropdown-item:hover {
    background: var(--main-lighten-green);
    color: var(--main-green);
}

.dropdown-toggle::after {
    border: solid var(--dark);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    vertical-align: middle;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin-inline-start: 12px;
    margin-top: -5px;
}

@media (max-width:992px) {
    .future-header .nav-item {
        display: block;
    }

    .dropdown-menu {
        display: none;
    }

    .future-header .navbar-collapse {
        padding: 16px;
    }
}

.future-header .lang {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--dark);
    border: 1px solid var(--dark);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}


@media (max-width:1200px) {
    .future-header .nav-item .nav-link {
        padding-inline: 8px;
    }
}

/*-----------End Header-----------*/


.hero {
    background-position: right bottom;
    background-repeat: no-repeat;
    z-index: 1;
    position: relative;
    height: calc(100vh - 100px);
    min-height: 700px;
}

.hero:after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: radial-gradient(at 211% 74%, rgb(0 0 0 / 0%) 36%, rgb(255 255 255) 58%); */
    background: url('../img/hero-bg-trans.png') no-repeat bottom right;
    background-size: cover;
    z-index: -1;
}

.bg-img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    min-width: 1200px;
}

.hero h1 {
    font-size: 64px;
}

/*-----------Start Benefits Cards-----------*/
.benefits-cards {}

.benefits-cards .col .item {
    background: #E8F0FE;
    padding: 16px;
    border-radius: 20px;
    overflow: hidden;
    /* position: relative; */
}

.benefits-cards .col:nth-child(even) .item {
    background: #F2F6FF;
}

.benefits-cards .col:nth-child(3) .item {
    background: var(--main-lighten-green);
}

.benefits-cards .stars {
    padding: 8px 12px;
    border-radius: 20px;
    background: rgba(42, 152, 69, 0.1);
    font-size: 16px;
}

.benefits-cards .stars li {
    color: var(--main-green);
}

.benefits-cards p {
    font-weight: 400;
    font-size: 14px;
}

.benefits-cards .layers {
    position: relative;
    height: 234px;
    width: calc(100% + 32px);
    margin-inline: -16px;
    margin-bottom: -16px;
    color: var(--white);
}

.benefits-cards .layers .layer {
    position: absolute;
    padding: 16px 12px;
}

.benefits-cards .layers .layer:nth-child(1) {
    right: 0;
    background: var(--main-green);
    height: 100%;
    border-top-left-radius: 20px;
    z-index: 2;
}

.benefits-cards .layers .layer:nth-child(2) {
    background-color: var(--main-light-green);
    bottom: 0;
    height: 180px;
    z-index: 1;
    width: 125px;
    /* border-inline-start-style: ; */
    border-top-right-radius: 20px;
}

.benefits-cards .layers .layer:nth-child(3) {
    bottom: 0;
    background: var(--main-lighten-green-2);
    z-index: 3;
    left: 0;
    right: 0;
    width: 140px;
    margin: 0 auto;
    padding-block: 16px;
    border-radius: 15px 15px 0 0;
    padding-bottom: 10px;
}



/*-----------End Benefits Cards-----------*/


/*-----------Start video Section-----------*/

.video-wrapper {
    height: 400px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.video-wrapper:after {
    position: absolute;
    inset: 0;
    background: var(--dark);
    opacity: 0.8;
    content: '';
    z-index: -1;
}

.video-wrapper .play {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    font-size: 26px;
    text-indent: 4px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--main-blue);
}

.video-wrapper .play:after {
    background: var(--white);
    content: '';
    width: 70px;
    height: 70px;
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.video-wrapper .play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    z-index: -1;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        opacity: 0;
    }
}

.video-wrapper p {
    position: absolute;
    bottom: 0;
    padding: 32px;
    margin: 0;
    color: var(--white);
}


.video-wrapper.style-2 {
    height: 700px;
    border-radius: 0;
}

.video-wrapper.style-2:after {
    opacity: 0.2;
    z-index: -2;
}

.video-wrapper.style-2 .content {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.video-wrapper.style-2 .play {
    top: auto;
    transform: none;
    position: relative;
    left: auto;
}

.video-wrapper.style-2 p {
    position: relative;
    padding-inline-start: 0;
}

/*-----------End video Section-----------*/

.consultation-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.consultation-steps .item {
    flex: 0 0 250px;
    max-width: 250px;
    position: relative;
}

.consultation-steps .item .num {
    font-size: 125px;
    line-height: 100px;
    opacity: 0.1;
    font-weight: 700;
    margin-bottom: -25px;
}

.consultation-steps .item:after {
    position: absolute;
    content: '';
    background: url('../img/step-arrow.png') no-repeat;
    width: 100%;
    height: 30px;
    top: 0;
    /* padding-inline-start: 110px; */
    /* padding-top: 10px; */
    margin-top: 10px;
    margin-inline-start: 110px;
}

.steps-with-num.consultation-steps .item:after {
    margin-inline-start: 70px;
}

.consultation-steps .item:nth-child(2):after {
    transform: scaleY(-1) translateY(-20px);
    padding-top: 0;
}

.consultation-steps .item:last-child:after {
    display: none;
}

/*-----------End video Section-----------*/


/*-----------Start Cards Big Icon-----------*/
.cards-big-icon .item {
    background: var(--main-violet-blue);
    padding: 24px;
    position: relative;
    border-radius: 20px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.cards-big-icon .item .icon {
    margin-inline-end: -24px;
    margin-bottom: -24px;
}

.cards-big-icon .item .icon img {
    transition: all ease-in-out 0.3s;
}

.cards-big-icon .item .btn {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    background: var(--main-light-green);
    font-size: 20px;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 0.5s;
}

.cards-big-icon .item:hover .btn {
    margin-inline-start: 10px;
}

.cards-big-icon .item:hover .icon img {
    opacity: 0.5;
}

.cards-big-icon.style-2 .item {
    background: var(--main-lighten-green);
}

.cards-big-icon.style-2 .item .btn {
    background: var(--main-blue);
}

/*-----------End Cards Big Icon-----------*/

/*-----------Start Future Custom Tabs-----------*/
.future-custom-tabs nav .nav-tabs {
    border: 0;
}

.future-custom-tabs nav .nav-tabs .nav-link {
    border: 0;
    padding-block: 20px;
    padding-inline: 0;
    margin-inline: 16px;
    position: relative;
    font-size: 20px;
    color: var(--dark);
}

.future-custom-tabs nav .nav-tabs .nav-link:after {
    height: 3px;
    content: '';
    bottom: 0;
    width: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: var(--main-green);
    position: absolute;
    transition: all ease 0.3s;
}

.future-custom-tabs nav .nav-tabs .nav-link.active {
    color: var(--main-green);
    font-weight: 500;
}

.future-custom-tabs nav .nav-tabs .nav-link.active:after {
    width: 100%;
}

/*-----------End Future Custom Tabs-----------*/



/*-----------Start Doctors Slider-----------*/
.doctor-cards .item {}

.doctor-cards .item .img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.doctor-cards .item .img-wrapper .info {
    position: absolute;
    bottom: 0;
    padding: 16px;
}

.doctor-cards .item .img-wrapper .info .name {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

.doctor-cards .item .img-wrapper .info .status {
    background: var(--white);
    border-radius: 10px;
    display: inline-flex;
    padding: 2px 8px;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 8px;
}

.doctor-cards .item .img-wrapper .info .status span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-inline-end: 5px;
}

.doctor-cards .item .img-wrapper .info .status span.online {
    background: rgba(42, 152, 69, 1);
}

.doctor-cards .item .img-wrapper .info .status span.offline {
    background: rgba(255, 72, 72, 1);
}

.doctor-cards .item .img-wrapper:before {
    position: absolute;
    content: '';
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0) 34.09%, rgba(18, 18, 18, 0.5) 100%);
    z-index: 0;
}

.doctor-cards .item .img-wrapper img {
    height: 300px;
    min-width: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .3s ease;
}

.doctor-cards .doctor-info {
    padding: 0;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.doctor-cards .doctor-info li span {
    color: #888888;
    margin-inline-end: 5px;
}

.doctors-slider .arrows {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.doctors-slider .swiper-arrow {
    position: relative;
    left: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--main-green);
    font-size: 20px;
    color: var(--white);
    border-radius: 50%;
    margin: 0;
}

.doctors-slider .swiper-arrow:hover {
    background: var(--main-light-green);
    border-color: var(--main-light-green) !important;
    color: var(--white);
}

.doctors-slider .swiper-arrow:after {
    font-size: 14px;
    font-weight: 600;
}

.doctors-slider .swiper-fraction {
    font-weight: 400;
    user-select: none;
}

.doctors-slider .swiper-pagination {
    height: 5px;
    overflow: hidden;
    border-radius: 10px;
    background: #e8e8e8;
}

.doctors-slider .swiper-pagination-progressbar-fill {
    background: var(--dark);
}

/*-----------End Doctors Slider-----------*/
/*-----------Start Book Appointment-----------*/
.book-appointment-form-wrapper {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 24px;
}

/*-----------End Book Appointment-----------*/


/*-----------Start Feedbacks Slider-----------*/
.feedbacks-slider .item {
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    display: flex;
    padding: 16px;
    align-items: center;
    justify-content: space-between;
}

.feedbacks-slider .item figure {
    flex: 0 0 82px;
    max-width: 82px;
    margin: 0;
    margin-inline-end: 16px;
}

.feedbacks-slider .item .name {
    font-size: 20px;
    font-weight: 500;
}

.feedbacks-slider .item .date {
    font-size: 16px;
    font-weight: 300;
}

.feedbacks-slider .item .icon {
    margin-inline-start: 16px;
    color: var(--main-lighten-green-2);
    font-size: 60px;
    opacity: 0.3;
}

.feedbacks-slider .swiper-slide-active .item {
    background: #f0f8f2;
}

.feedbacks-slider .arrows {
    position: absolute;
}

.feedbacks-slider .swiper-arrow {
    position: relative;
    margin: 0;
    left: 0;
    right: 0;
}

.feedbacks-quote .item {
    padding: 32px;
    background: #f0f8f2;
    border-radius: 20px;
}

.feedbacks-quote .item p {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
}

/*-----------End Feedbacks Slider-----------*/
/*-----------Start News Slider-----------*/
.swiper.news-slider {
    overflow: visible;
}

.news-slider .item figure,
.news-cards .item figure {
    border-radius: 20px;
    overflow: hidden;
}

.news-slider .item .title,
.news-cards .item .title {
    font-size: 24px;
    font-weight: 500;
    margin-block: 12px;
}

.news-slider .item .title,
.news-slider .item a,
.news-slider .item a i,
.news-cards .item .title,
.news-cards .item a,
.news-cards .item a i {
    transition: all ease 0.3s;
}

.news-slider .item:hover .title,
.news-slider .item:hover a,
.news-cards .item:hover .title,
.news-cards .item:hover a {
    color: var(--main-green) !important;
}

.news-slider .item:hover a i,
.news-cards .item:hover a i {
    margin-inline-start: 10px;
}

.nav-news-years {}

.nav-news-years .nav-link {
    color: var(--dark);
    padding-inline: 0;
    transition: all ease 0.3s;
    margin-bottom: 16px;
    line-height: 28px;
    font-weight: 400;
}

.nav-news-years .nav-link:hover {
    padding-inline: 16px;
    color: var(--main-green);
}

.nav-news-years .nav-link.active {
    border-inline-start: 4px solid var(--main-green);
    font-size: 30px;
    font-weight: 500;
    padding-inline: 16px;
}

/*-----------End News Slider-----------*/

/*-----------Start Footer Slider-----------*/

.footer-slider {
    background: var(--main-green);
    color: var(--white);
}

.footer-slider .item {
    padding: 30px 16px;
    position: relative;
}

/* .footer-slider .item:before {
    content: '\f005';
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 0;
    color: var(--main-lighten-green-2);
} */

.footer-slider .item a {
    color: var(--white);
    font-weight: 400;
}

.footer-slider .item .icon {
    margin-inline-end: 12px;
}

.footer-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}

.footer-list {
    padding: 0;
    list-style: none;
    margin: 0;
}

.footer-list li a {
    color: var(--dark);
    font-weight: 400;
    line-height: 2em;
    display: block;
    transition: all ease 0.3s;
}

.footer-list li a:hover {
    color: var(--main-green);
}

.social-list {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    gap: 8px;
}

.social-list li a {
    font-size: 18px;
    color: var(--main-green);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .copyright{} */
/*-----------End Footer Slider-----------*/

/*-----------Start Video Modal-----------*/
.video-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);

    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}

.video-modal.show {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    background: #000;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.show .video-modal-content {
    transform: scale(1);
}

.video-modal video {
    width: 100%;
    height: auto;
    display: block;
}

.video-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}

.video-modal:not(.show) {
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}

/*-----------End Video Modal-----------*/

/*-----------Start Page Banner-----------*/
.page-banner {
    padding: 150px 0 50px;
    background: url('../img/page-banner.png') no-repeat center / cover;
}

.bg-transparent {
    background: transparent;
}

.page-banner .breadcrumb li.breadcrumb-item a {
    color: var(--dark);
    font-weight: 400;
}

.page-banner .breadcrumb li.breadcrumb-item.active {
    color: rgba(var(--dark-rgb), 0.3);
    font-weight: 400;
}

.page-banner .breadcrumb li.breadcrumb-item i {
    color: var(--main-green);
}

.page-banner p {
    max-width: 500px;
    font-weight: 400;
}

/*-----------Start Page Banner-----------*/


/*-----------Start List Title Check-----------*/
.sticky-title {
    position: sticky;
    top: 92px;
    /* background: var(--main-blue); */
    background: linear-gradient(0deg, rgba(46, 49, 146, 0) 0%, rgba(46, 49, 146, 1) 30%);

}

.icon-bg {
    position: relative;
    z-index: 1;
    height: 100%;
}

.icon-bg:after {
    content: '';
    z-index: -1;
    background: url('../img/icon-bg.png') no-repeat center/cover;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.4;
    background-size: contain;
    background-position: center;
}

.radius-bottom {
    position: relative;
}

.radius-bottom:after {
    content: '';
    background: url('../img/radius-bottom.png') no-repeat center/cover;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    bottom: -80px;
}

.list-title-check {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-title-check li {
    margin-bottom: 70px;
}

.list-title-check li .title {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 16px;
}

.list-title-check li .title:before {
    content: url('../img/svg-icon/check-all.svg');
    width: 24px;
    height: 24px;
    margin-inline-end: 10px;
}

.list-title-check li .title:after {
    content: '';
    height: 1px;
    width: 100%;
    background: var(--white);
    opacity: 0.2;
    margin-inline-start: 20px;
}

/* .list-title-check li:last-child {
    margin-bottom: 0;
} */

/*-----------End List Title Check-----------*/


/*-----------Start Our Story Card-----------*/
.rope-bg {
    position: relative;
}

.rope-bg:before {
    position: absolute;
    content: '';
    top: -52px;
    left: 0;
    right: 0;
    height: 130px;
    background: url('../img/rope.png') no-repeat top center/cover;
}

.our-story-slider {
    padding-block: 100px;
    padding-inline: 100px;
}

.our-story-slider .arrows {
    display: flex;
    gap: 24px;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.our-story-slider .arrows .swiper-arrow {
    position: relative;
    margin: 0;
    left: auto;
    right: auto;
}

.our-story-slider .arrows .swiper-arrow:after {
    display: none;
}

.our-story-card .item {
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(var(--dark-rgb), 0.2);
}

.our-story-card .item figure {
    border-radius: 20px;
    overflow: hidden;
}

.our-story-card .item figure img {
    height: 200px;
    min-width: 100%;
    object-fit: cover;
    object-position: center;
}

.our-story-card .item .year {
    border-inline-start: 2px solid var(--main-green);
    line-height: 20px;
    margin-bottom: 12px;
    padding-inline-start: 8px;
}

.our-story-card .item:before {
    position: absolute;
    content: '';
    background: var(--main-green);
    border-radius: 4px;
    height: 50px;
    width: 30px;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.our-story-card .item:after {
    width: 16px;
    height: 16px;
    position: absolute;
    content: '';
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 50%;
}

/* .our-story-card .swiper-slide:nth-child(1) .item {
    transform-origin: top center;
    transform: rotate(10deg) translateY(-48px);
}

.our-story-card .swiper-slide:nth-child(2) .item {
    transform-origin: top center;
    transform: rotate(5deg) translateY(-10px);
}

.our-story-card .swiper-slide:nth-child(4) .item {
    transform-origin: top center;
    transform: rotate(-5deg) translateY(-10px);
}
.our-story-card .swiper-slide:nth-child(5) .item {
    transform-origin: top center;
    transform: rotate(-10deg) translateY(-48px);
} */

.our-story-card .item {
    transition: transform 0.3s ease, z-index 0.3s ease;
}

/*-----------End Our Story Card-----------*/
/*-----------Start Who We Serve-----------*/
.who-we-serve .item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.who-we-serve .item img {
    width: 100%;
}

.who-we-serve .item .title {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    color: var(--white);
    font-weight: 400;
    display: flex;
    align-items: center;
}

.who-we-serve .item .title .icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 20px;
}

/*-----------End Who We Serve-----------*/




/*-----------Start Stats count-----------*/
.stats-count .item {
    padding: 10px 24px;
    border-inline-start: 3px solid var(--main-green);
}

.stats-count .item .h1 {
    font-size: 72px;
    line-height: 55px;
    margin-bottom: 0;
    margin-top: 30px;
}

/*-----------End Stats count-----------*/

/*-----------Start Timeline-----------*/
.timeline {
    position: relative;
}

.timeline .timeline-line {
    position: absolute;
    left: 0;
    right: 0;
    width: 5px;
    margin: 0 auto;
    background: var(--main-lighten-green);
    top: 20px;
    bottom: 0;
}

.timeline .timeline-progress {
    position: absolute;
    left: 0;
    right: 0;
    width: 5px;
    margin: 0 auto;
    background: var(--main-green);
    top: 20px;
    transition: all ease 0.3s;
}

.timeline .point {
    position: relative;
    margin-bottom: 32px;
}

.timeline .point:last-child {
    margin-bottom: 0;
}

.timeline .point:after {
    background: var(--main-lighten-green);
    width: 25px;
    height: 25px;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 14px;
    margin: 0 auto;
    border-radius: 50%;
    transition: all ease 0.3s;
}

.timeline .point:before {
    width: 54px;
    height: 54px;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    border-radius: 50%;
    border: 3px solid var(--main-lighten-green);
    transition: all ease 0.3s;
}

.timeline .point.reached:after {
    background: var(--main-green);
}

.timeline .point.reached:before {
    border-color: var(--main-green);
}

/*-----------End Timeline-----------*/


.faded-img {
    background-image: url('../img/faded-img-2.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}

.instructions-card {
    position: sticky;
    top: 200px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 32px;
    border-radius: 10px;
}

/*-----------Start dropzone-----------*/



.dropzone-wrapper .dropzone {
    /* background: #2f2e88; */
    border: 2px dashed rgba(var(--white-rgb), 0.3);
    padding: 24px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
}

.dropzone-wrapper.gray-border .dropzone,
.dropzone-wrapper.gray-border .file-item {
    border-color: rgba(var(--dark-rgb), 0.1);
}

.dropzone-wrapper .dropzone-message {
    color: var(--gray)
}

.dropzone-wrapper .dropzone-message p {
    margin: 0;
    font-size: 16px;
}

.dropzone-wrapper .dropzone-message span {
    color: var(--main-lighten-green-2);
    cursor: pointer;
    display: block;
}

.dropzone-wrapper .file-list {
    margin-top: 20px;
}

.dropzone-wrapper .file-item {
    padding: 16px;
    border: 1px solid rgba(var(--white-rgb), 0.3);
    margin-bottom: 10px;
    border-radius: 8px;
    position: relative;
}

.dropzone-wrapper .file-item .file-name {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropzone-wrapper .file-item .delete-btn {
    /* position: absolute;
    right: 10px;
    top: 10px; */
    color: #fff;
    cursor: pointer;
}

.dropzone-wrapper.dark-icon .file-item .delete-btn {
    color: var(--dark);
}

.dropzone-wrapper .progress-container {
    margin-bottom: 8px;
    background: rgba(var(--white-rgb), 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.dropzone-wrapper .progress-bar {
    height: 6px;
    background: var(--main-light-green);
    border-radius: 10px;
    width: 0%;
    transition: width 0.4s ease;
}

.dropzone-wrapper .progress-text {
    font-size: 14px;
    color: var(--gray);
}

.dropzone-wrapper .success-icon {
    color: var(--main-light-green);
}

/*-----------End dropzone-----------*/


/*-----------Start multiple specialty-----------*/
.selected-specialty-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.selected-specialty-list .item {
    font-size: 14px;
    border-radius: 30px;
    padding: 4px 12px;
    border: 1px solid rgba(var(--white-rgb), 0.3);
}

/* .select2-style-2 .select2-selection__rendered {
    display: none !important;
}

.select2-selection__rendered {
    color: #999 !important;
} */

/*-----------End multiple specialty-----------*/



/*-----------Start Sidebar-----------*/
.sidebar .title {
    color: var(--dark);
    opacity: 0.5;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
}

.sidebar .form-check {
    font-size: 14px;
    font-weight: 400;
}

.selected-filter ul {
    display: flex;
    gap: 12px;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.selected-filter ul li a:not(.clear-filters) {
    color: var(--dark);
    font-size: 14px;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 30px;
    border: 1.5px solid rgba(var(--dark-rgb), 0.2);
    align-items: center;
    display: flex;
}

.selected-filter ul li a:hover {
    border-color: var(--main-green);
    color: var(--main-light-green);
}

.selected-filter ul li a.clear-filters {
    color: var(--main-green);
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
}

/*-----------End Sidebar-----------*/

/*-----------Start Pagination-----------*/
.pagination {
    /* border: 0; */
    gap: 12px;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    border: 0;
}

.pagination .page-item .page-link {
    background: transparent;
    color: var(--dark);
    font-size: 14px;
    border-radius: var(--radius);
    border: 1px solid rgba(var(--dark-rgb), 0.15);
}

.pagination .page-item.disabled .page-link {
    color: rgba(var(--dark-rgb), 0.5);
}

.pagination .page-item.active .page-link {
    color: var(--white);
    background: var(--main-green);
}

/* .pagination .page-item:last-child{

} */
/*-----------End Pagination-----------*/

.bg-blur-img {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
    border-radius: 20px;
}

.bg-blur-img .bg {
    filter: blur(47px);
    height: calc(100% + 50px);
    inset: 0;
    object-fit: cover;
    position: absolute;
    inset: -25px;
    width: calc(100% + 50px);
    z-index: -1;
}

.bg-blur-img .post-img {
    display: block;
    margin: 0 auto;
    max-height: 540px;
    border-radius: 20px;
    margin-block: 30px;
}





/* Start upload photo wrapper */
.upload-photo-wrapper {
    display: flex;
    align-items: center;
}

.upload-photo-wrapper .img-wrapper {
    flex: 0 0 142px;
    max-width: 142px;
    height: 142px;
    width: 142px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-inline-end: 24px;
}

.upload-photo-wrapper .img-wrapper figure {
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.upload-photo-wrapper .img-wrapper .upload-icon {
    position: absolute;
    bottom: 3px;
    right: -6px;
    background: var(--main-blue);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

/* End upload photo wrapper */

.animation-icon-bg {
    position: relative;
    background: url('../img/icon-bg.png') repeat-y;
    background-position: left top;
    z-index: 0;
    animation: move_bg 40s linear 0s infinite;
}

.animation-icon-bg:after {
    position: absolute;
    content: '';
    inset: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 120%);
    z-index: -1;
}

@keyframes move_bg {
    0% {
        background-position: 0 0%;
    }

    100% {
        background-position: 0 100%;
    }
}

.most-requested-hubs {
    position: relative;
    z-index: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.most-requested-hubs:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--main-lighten-green) 25%, rgba(234, 245, 236, 0.65) 75%);
    z-index: -1;
}


.most-requested-hubs .item {
    position: relative;
    border-radius: 20px;
}

.most-requested-hubs .item:before {
    position: absolute;
    inset: -10px;
    background: rgba(var(--dark-rgb), 0.2);
    content: '';
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.most-requested-hubs .item.active:before {
    opacity: 1;
}

.most-requested-hubs .item:after {
    content: '';
    inset: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.00) 0%, rgba(18, 18, 18, 0.80) 100%);
    border-radius: 20px;

}

.most-requested-hubs .text {
    position: absolute;
    left: 0;
    right: 0;
    padding: 24px;
    bottom: 0;
    z-index: 1;
    font-weight: 500;
    color: #fff;
}

.most-requested-hubs .item img {
    height: 360px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}





/*-----------Start contact-us-----------*/
.contact-us {
    margin-top: -150px;
}

.contact-sidebar {
    padding: 72px 44px;
}

.contact-form-wrapper {
    padding: 56px;
    border: 1px solid rgba(var(--dark-rgb), 0.1);
    border-inline-start: 0;
    border-start-end-radius: 16px;
    border-end-end-radius: 16px;
}

.contact-us .contact-sidebar ul {
    font-size: 16px;

}

.contact-us .contact-sidebar ul li {
    display: flex;
    margin-bottom: 16px;
}

.contact-us .contact-sidebar ul li .icon {
    margin-inline-end: 12px;
}

.contact-us .contact-sidebar ul li a {
    color: var(--white);
}

/*-----------End contact-us-----------*/


/*-----------Start Dashbaord-----------*/
.dashboard {
    background: var(--lighten-gray);
    overflow-x: hidden;
}

.dashbaord-wrapper {}

/* .dashbaord-wrapper .dashboard-sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    display: inline-block;
    position: fixed;
    background-color: var(--white);
    z-index: 1003;
    padding: 16px;
    transition: all ease 0.3s;
    } */
.dashboard-sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
    padding: 16px;
    background-color: var(--white);
    transition: all 0.3s ease;
    z-index: 1003;
}

.dashboard-sidebar .close-aside {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--main-green);
    background: var(--main-lighten-green);
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 18px;
}

.dashboard-sidebar .logo .small-logo {
    display: none;
}

.sidebar-collapsed .dashboard-sidebar .logo .small-logo {
    display: block;
}

.sidebar-collapsed .dashboard-sidebar .logo .big-logo {
    display: none;
}

.dashbaord-wrapper .dashboard-sidebar .nav .nav-item {
    color: var(--gray);
    margin-bottom: 16px;
    font-weight: 400;
}

.dashbaord-wrapper .dashboard-sidebar .nav .nav-item:last-child {
    margin-bottom: 0;
}

.dashbaord-wrapper .dashboard-sidebar .nav .nav-item .nav-link {
    padding: 8px 16px;
    border-radius: var(--radius);
    color: var(--dark);
    opacity: 0.3;
    font-weight: 400;
    transition: all ease 0.3s;
}

.dashbaord-wrapper .dashboard-sidebar .nav .nav-item .nav-link i {
    margin-inline-end: 12px;
}

.dashbaord-wrapper .dashboard-sidebar .nav .nav-item .nav-link.active,
.dashbaord-wrapper .dashboard-sidebar .nav .nav-item .nav-link:hover {
    background: var(--main-lighten-green);
    color: var(--main-green);
    opacity: 1;
}


.dashbaord-wrapper .dashboard-content {
    /* padding-inline-start: calc(var(--sidebar-width) + 16px);
    padding-inline-end: 16px; */
    margin-inline-start: var(--sidebar-width);
    transition: all ease 0.3s;
    position: relative;
}


/* Collapsed (desktop) */
body.sidebar-collapsed .dashboard-sidebar {
    width: var(--sidebar-collapsed-width);
}

body.sidebar-collapsed .dashboard-content {
    margin-inline-start: var(--sidebar-collapsed-width);
}

body.sidebar-collapsed .dashboard-sidebar .nav .text {
    display: none;
}

body.sidebar-collapsed .dashboard-sidebar .nav .nav-item .nav-link {
    position: relative;
}

body.sidebar-collapsed .dashboard-sidebar .nav .nav-item .nav-link:hover .text {
    position: absolute;
    display: block;
    top: 49%;
    transform: translateY(-50%);
    margin-inline-start: 40px;
    background: var(--main-lighten-green);
    padding: 2px 7px;
    border-radius: 6px;
}

body.sidebar-collapsed .dashboard-sidebar .nav .nav-item .nav-link i {
    margin: 0;
}

/* Hidden (mobile) */
@media (max-width: 991.98px) {
    body.sidebar-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1002;
    }

    .dashboard-sidebar {
        transform: translateX(-100%);
    }

    body.sidebar-open .dashboard-sidebar {
        transform: translateX(0);
    }

    .dashboard-content {
        margin-inline-start: 0 !important;
    }
}

@media (max-width:1200px) and (min-width:992px) {
    .dashbaord-wrapper .dashboard-sidebar .nav .nav-item .nav-link i {
        margin: 0;
    }

    .dashbaord-wrapper .dashboard-sidebar .nav .text {
        display: none;
    }

    .dashbaord-wrapper .dashboard-sidebar .nav .nav-item .nav-link {
        position: relative;
    }

    .dashbaord-wrapper .dashboard-sidebar .nav .nav-item .nav-link:hover .text {
        position: absolute;
        display: block;
        top: 49%;
        transform: translateY(-50%);
        margin-inline-start: 40px;
        background: var(--main-lighten-green);
        padding: 2px 7px;
        border-radius: 6px;
    }
}



.dashbaord-header {
    padding: 8px 24px;
    position: sticky;
    width: 100%;
    top: 0;
    background: var(--lighten-gray);
    z-index: 1;
}

.dashbaord-header .input-with-icon .form-control {
    background: transparent;
    border: 0;
}


.dashbaord-header .nav-item.notification .nav-link {
    color: var(--dark);
    position: relative;
    font-size: 24px;
}

.dashbaord-header .nav-item.notification .nav-link .num {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: red;
    color: var(--white);
    position: absolute;
    top: 3px;
    border: 2px solid var(--lighten-gray);
    right: 9px;
    font-size: 12px;
    border-radius: 50%;
    font-weight: 700;
}

.dashbaord-header .header-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    padding: 12px 8px;
}

.dashbaord-header .header-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--main-green);
    transition: all ease 0.3s;
    border-radius: 5px
}

.dashbaord-header .header-toggle span:nth-child(2) {
    width: 70%;
}

.dashbaord-header .header-toggle:hover span {
    width: 70%;
}

.dashbaord-header .header-toggle:hover span:nth-child(2) {
    width: 100%;
}


.dashboard-main {
    padding: 24px;
}

.dashboard-main .dash-card {
    background: var(--white);
    border-radius: 10px;
    padding: 16px;
    border: 1px solid rgba(var(--dark-rgb), 0.1);
}


.custom-datatable-style-wrapper .table {
    font-size: 14px;
}

.custom-datatable-style-wrapper .table td {
    box-shadow: none !important;
    border: 0;
    vertical-align: middle;
}

.custom-datatable-style-wrapper .table thead th {
    border: 0;
    padding-block: 14px;
}

.custom-datatable-style-wrapper .dt-info {
    font-size: 14px;
    font-weight: 400;
}

/* .custom-datatable-style-wrapper .status{
    font-size: 14px;
} */
/* div.dt-scroll-head table.dataTable{
     border-spacing: 0 0px !important;

 }
.custom-datatable-style-wrapper .table {
    border-collapse: separate !important;
    border-spacing: 0 5px !important;
} */
.custom-datatable-style-wrapper table.table.dataTable> :not(caption)>*>* {
    border-bottom: 8px solid var(--lighten-gray);
}


.custom-datatable-style-wrapper table tr th:first-child,
.custom-datatable-style-wrapper table tr td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 15px;
}

.custom-datatable-style-wrapper table tr th:last-child,
.custom-datatable-style-wrapper table tr td:last-child {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.custom-datatable-style-wrapper .table .action {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    gap: 10px;
}

.custom-datatable-style-wrapper .table .action li a {
    display: flex;
    align-items: center;
    font-weight: 400;
}

.custom-datatable-style-wrapper .table .action li a:after {
    content: '';
    position: relative;
    width: 1px;
    height: 16px;
    background: var(--dark);
    opacity: 0.1;
    display: block;
    margin-inline-start: 10px;
}

.custom-datatable-style-wrapper .table .action li a i {
    margin-inline-end: 8px;
}

.custom-datatable-style-wrapper .table .action li:last-child a:after {
    display: none;
}

.sts-pending,
.sts-active,
.sts-completed,
.sts-canceled {
    font-weight: 400;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline;
    font-size: 12px;
}

.sts-pending {
    background: rgba(255, 165, 0, 0.07);
    color: rgba(255, 165, 0, 1);
}

.sts-active {
    color: rgba(33, 150, 243, 1);
    background: rgba(33, 150, 243, 0.07);
}

.sts-completed {
    color: rgba(42, 152, 69, 1);
    background: rgba(42, 152, 69, 0.07);
}

.sts-canceled {
    color: rgba(249, 53, 73, 1);
    background: rgba(249, 53, 73, 0.07);
}

.chart-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none;
}

.chart-label li span {
    width: 8px;
    height: 8px;
    display: inline-block;
    background: var(--main-green);
    border-radius: 50%;
    margin-inline-end: 5px;
}

.chart-label li {
    font-size: 16px;
    font-weight: 400;
}

.chart-label li.inactive {
    opacity: 0.4;
}

#genderChart {
    width: 200px;
    height: 200px;
    max-width: 100%;
    margin: 0 auto;
}

/* .chart-label li div */
/*-----------End Dashbaord-----------*/


/*-----------Start Sessions Wrapper-----------*/
.sessions-wrapper {
    display: flex;
    background: var(--white);
    border-radius: 15px;
    position: relative;
}

.sessions-wrapper .chat-sidebar {
    flex: 0 0 300px;
    max-width: 300px;
    border-inline-end: 1px solid rgba(var(--dark-rgb), 0.1);
    padding: 24px 16px;
}

.sessions-wrapper .chat-sidebar .user-search {
    /* margin-block: 16px; */
}

.sessions-wrapper .chat-sidebar .users-list {
    padding: 0;
    list-style: none;
    margin: 0;
    cursor: pointer;
    height: calc(100vh - 320px);
    overflow-x: auto;
}

.sessions-wrapper .chat-sidebar .users-list li {
    margin-bottom: 12px;
    display: flex;
    padding: 12px;
    border-radius: var(--radius);
    align-items: center;
}

.sessions-wrapper .chat-sidebar .users-list li figure {
    flex: 0 0 40px;
    max-width: 40px;
    height: 40px;
    margin: 0;
    margin-inline-end: 12px;
    border-radius: 50%;
    overflow: hidden;
}

.sessions-wrapper .chat-sidebar .users-list li .name {
    font-weight: 500;
    font-size: 14px;
}

.sessions-wrapper .chat-sidebar .users-list li .text {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.sessions-wrapper .chat-sidebar .users-list .info {
    flex-grow: 1;
    max-width: calc(100% - 80px);
}

.sessions-wrapper .chat-sidebar .users-list .status {
    font-size: 12px;
    font-weight: 400;
    flex: 0 0 30px;
    max-width: 30px;
    color: var(--gray);
    text-align: end;
}

.sessions-wrapper .chat-sidebar .users-list .status .time {
    display: block;
    text-align: end;
}

.sessions-wrapper .badge {
    margin-top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    padding: 0;
    display: inline-block;
}

.sessions-wrapper .badge.online {
    background: var(--main-green);
}

.sessions-wrapper .conversation .badge.offline {
    background: var(--gray);
}

.sessions-wrapper .chat-sidebar .users-list li.active {
    background: var(--main-lighten-green);
}

.sessions-wrapper .chat-sidebar .users-list li:last-child {
    margin: 0;
}

.sessions-wrapper .conversation {
    padding: 16px 0;
    width: 100%;
}

.sessions-wrapper .conversation .user-conversation {
    display: none;
}

.sessions-wrapper .conversation .user-conversation.active {
    display: block;
}

.sessions-wrapper .conversation .conversation-header {
    display: flex;
    padding: 16px 32px;
    border-block-end: 1px solid rgba(var(--dark-rgb), 0.1);
    align-items: center;
}

.sessions-wrapper .conversation .conversation-header .info {
    /* flex: 0 0 calc(100% - 52px);
    max-width: calc(100% - 52px); */
    width: 100%;
}

.sessions-wrapper .conversation .conversation-header figure {
    flex: 0 0 40px;
    max-width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0;
    margin-inline-end: 12px;
}

.sessions-wrapper .conversation .conversation-header .status {
    font-size: 14px;
    color: var(--gray);
    font-weight: 400;
    display: flex;
    align-items: center;
}

.sessions-wrapper .conversation .conversation-header .name {
    font-size: 16px;
    font-weight: 500;
}

.sessions-wrapper .conversation .conversation-container {
    padding: 16px 32px;
    height: calc(100vh - 350px);
    overflow-y: scroll;
}

.sessions-wrapper .conversation .conversation-container .msg {
    display: flex;
    margin-bottom: 24px;
}

.sessions-wrapper .conversation .conversation-container .msg:last-child {
    margin-bottom: 0;
}

.sessions-wrapper .conversation .conversation-container .msg figure {
    flex: 0 0 52px;
    max-width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0;
    /* margin-inline-end: 12px; */
}

.sessions-wrapper .conversation .conversation-container .msg .msg-text {
    background: rgba(var(--dark-rgb), 0.03);
    padding: 16px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 400;
    max-width: 500px;
}

.sessions-wrapper .conversation .conversation-container .msg .msg-time {
    font-size: 12px;
    font-weight: 400;
    margin-top: 12px;
    color: var(--gray);
}

.sessions-wrapper .conversation .conversation-container .msg.doctor {
    flex-direction: row-reverse;
}

.sessions-wrapper .conversation .conversation-container .msg.doctor .msg-text {
    background: var(--main-lighten-green);
}

.sessions-wrapper .conversation .conversation-container .msg.doctor .msg-time {
    text-align: end;
}

.sessions-wrapper .conversation .conversation-footer {
    padding: 16px 32px;
}

.sessions-wrapper .conversation .conversation-footer .form-control {
    padding-inline-end: 100px;
}

.conversation-user-info .user-info {
    display: none;
}

.conversation-user-info .user-info.active {
    display: block;
}

/*-----------End Sessions Wrapper-----------*/
/*-----------Start Patient Dashboard -----------*/
.one-click {
    background: var(--main-green);
    border-radius: 10px;
    padding-inline: 24px;
}

.one-click .btn {
    background: var(--white);
    border: 0;
}

.one-click .btn:hover {
    background: var(--main-violet-blue);
}

/*-----------End Patient Dashboard -----------*/


/*-----------Start User Type Modal -----------*/

.modal .modal-content {
    margin: 0;
    border: 0;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0px 4px 18px 0px rgba(47, 43, 61, 0.16);
}

.modal .modal-header,
.modal .modal-footer {
    border: 0;
}

.user-type-modal .user-type .item {
    width: 200px;
    background: rgba(var(--dark-rgb), 0.04);
    border-radius: 10px;
    transition: all ease 0.3s;
}

.user-type-modal .user-type .item a {
    transition: all ease 0.3s;
    color: var(--dark);
    display: block;
    padding: 16px;
}

.user-type-modal .user-type .item:hover {
    background: var(--main-lighten-green);
}

.user-type-modal .user-type .item:hover a {
    color: var(--main-green);
}


/*-----------End User Type Modal -----------*/


/*-----------Start Doctor Modal -----------*/
/* .doctor-modal .doctor-info {
    display: flex;
    align-items: center;
} */

.doctor-modal .doctor-info h5 {
    display: flex;
    align-items: center;
}

.doctor-modal .doctor-info h5 span {
    font-weight: 400;
    color: var(--main-green);
    font-size: 16px;
}

.doctor-modal .doctor-info figure {
    flex: 0 0 100px;
    max-width: 100px;
    height: 100px;
    margin: 0;
    margin-inline-end: 16px;
}

.doctor-modal .rate {
    display: flex;
    align-items: center;
    margin-block: 12px;
}

.doctor-modal .rate ul {
    display: flex;
    align-items: center;
    padding: 0;
    list-style: none;
    margin: 0;
}

.doctor-modal .rate ul li {
    color: var(--yellow);
}
.doctor-modal .doctor-reviews{
    max-height: 400px;
    overflow-y: auto;
}
.doctor-modal .doctor-reviews .item .user-info{

}
.doctor-modal .doctor-reviews .item .user-info figure{
    flex: 0 0 58px;
    max-width: 58px;
    height: 58px;
    margin: 0;
    margin-inline-end: 16px;
}
.doctor-modal .doctor-reviews .item .user-info figure{}

/*-----------End Doctor Modal -----------*/

/*-----------Start Auth Pages-----------*/
.auth-pages {
    padding: 24px;
}

.auth-pages .auth-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: calc(100vh - 48px);
    min-height: 600px;
    border-radius: 15px;
    overflow: hidden;
}

.auth-form-wrapper {
    max-width: 560px;
    margin: 0 auto;
}

/*-----------End Auth Pages-----------*/


.list-with-img .item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.list-with-img .item figure {
    margin: 0;
    flex: 0 0 40px;
    max-width: 40px;
    height: 40px;
    margin-inline-end: 12px;
}


.future-custom-datepicker .datepicker:not(.col-md-6),
.future-custom-datepicker .datepicker .table-condensed {
    width: 100%;
}

.future-custom-datepicker .datepicker .day {
    padding: 8px;
    font-size: 14px;
    font-weight: 400;
}

.future-custom-datepicker .datepicker .day.active,
.future-custom-datepicker .datepicker .day.active:hover {
    background: var(--dark);
    border-radius: 8px;
}

.future-custom-datepicker .datepicker .day.today,
.future-custom-datepicker .datepicker .day.today:hover {
    background: var(--main-lighten-green);
    color: var(--dark);
}

.future-custom-datepicker .datepicker .day.disabled-date,
.future-custom-datepicker .bootstrap-datetimepicker-widget table td.disabled,
.future-custom-datepicker .bootstrap-datetimepicker-widget table td.disabled:hover {
    color: var(--dark);
    opacity: 0.3;
    cursor: not-allowed;
}

.future-custom-datepicker .datepicker .prev.disabled,
.future-custom-datepicker .datepicker .next.disabled {
    opacity: 0;
    cursor: default;
}

.future-custom-datepicker .datepicker .dow {
    padding-block: 8px;
    font-weight: 400;
    font-size: 16px;
}

.future-custom-datepicker .datepicker .next,
.future-custom-datepicker .datepicker .prev {
    font-size: 14px;
    background: transparent;
    color: var(--dark);
}

.future-custom-datepicker .datepicker .datepicker-switch {
    padding-block: 5px;
    background: transparent;
}

.future-custom-datepicker .datepicker .datepicker-months .month {
    font-size: 16px;
    font-weight: 600;
}

.future-custom-datepicker .datepicker .datepicker-months .month.active {
    border-radius: 8px;
    background: var(--dark);
}

.future-custom-datepicker .bootstrap-datetimepicker-widget table th.picker-switch {
    padding: 10px;
}

.future-custom-datepicker .timepicker .timepicker-picker,
.future-custom-datepicker .timepicker .timepicker-hours,
.future-custom-datepicker .timepicker .timepicker-minutes {
    max-width: 200px;
    margin: 0 auto;
}

.future-custom-datepicker .timepicker .timepicker-picker .btn {
    border: 0 !important;
}

.future-custom-datepicker .timepicker .timepicker-picker .btn-primary {
    background: var(--dark);
    border: 0;
}

.future-custom-datepicker .bootstrap-datetimepicker-widget table td.today:before {
    display: none;
}

/* ------------------------------- */
.activity-timeline {
    position: relative;
}

.activity-timeline:after {
    position: absolute;
    left: 0;
    top: 8px;
    width: 1px;
    height: 100%;
    background: rgba(var(--dark-rgb), 0.1);
    content: '';
}

.activity-timeline .item {
    position: relative;
    padding-inline-start: 24px;
    font-size: 14px;
    margin-bottom: 24px;
}

.activity-timeline .item:last-child {
    margin: 0;
}

.activity-timeline .item:after {
    position: absolute;
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--main-green);
    left: -4px;
    top: 6px;
    z-index: 1;
}

.activity-timeline .item .activity-info {
    display: flex;
}

.activity-timeline .item .name {
    font-weight: 400;
    display: block;
    margin-bottom: 8px;
}


.request-selected-date {
    border: 2px dashed rgba(var(--dark-rgb), 0.1);
    padding: 16px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 8px;
    cursor: pointer;
}



/*-----------Start Responsive-----------*/
/* @media (min-width: 992px) {
    .col-lg-5th {
        width: 20%;
        flex: 0 0 20%;
    }
} */
@media (min-width:1200px) {
    .col-lg-5th {
        width: 20%;
        flex: 0 0 20%;
    }
}

@media (max-width:1200px) {
    .masked-number-wrapper {
        font-size: 165px;
    }

    .consultation-steps .item {
        flex: 0 0 210px;
        max-width: 210px;
    }

    .consultation-steps .item h4 {
        font-size: 20px;
    }

    .consultation-steps .item:after {
        margin-inline-start: 75px;
        background-size: 150px;
    }

    .dashbaord-wrapper .dashboard-sidebar {}

    .conversation-user-info {
        background: var(--white);
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 350px;
        position: fixed;
        right: 0;
        top: 0;
        transform: translateX(150%);
        transition: all .3s linear;
        z-index: 100;
        overflow-x: auto;
    }

    .conversation-user-info .dash-card {
        border-radius: 0;
        border: 0;
    }

    .conversation-user-info.active {
        transform: translateX(0);
    }
}

@media (max-width:1024px) {
    .hero h1 {
        font-size: 46px;
    }

    .padding-150 {
        padding-block: 100px;
    }

    .section-title {
        font-size: 32px;
    }

    .cards-big-icon .item .icon {
        width: 115px;
    }

    .future-custom-tabs nav .nav-tabs .nav-link {
        font-size: 18px;
    }

    .bg-section .title {
        font-size: 44px;
    }

    /* .benefits-cards .col .item {
        height: 335px;
    } */

    /* .benefits-cards .col .item .fs-1 {
        font-size: 22px !important;
    }

    .benefits-cards .layers .layer:nth-child(1) {
        width: 85px;
    }
.benefits-cards .layers .layer:nth-child(2){

}
    .benefits-cards .layers .layer:nth-child(3) {
        padding-block: 8px;
        padding-bottom: 8px;
    } */
    .video-wrapper.style-2 {
        height: 550px;
    }
}

@media (max-width:992px) {

    html,
    body {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .consultation-steps .item {
        max-width: 46%;
        flex: 0 0 46%;
    }

    .consultation-steps .item:after {
        display: none;
    }

    .cards-big-icon .item {
        margin-bottom: 24px;
        min-height: 280px;
    }

    .feedbacks-quote .item p,
    .news-slider .item .title {
        font-size: 20px;
    }

    .news-slider .item .fs-5 {
        font-size: 1rem !important;
    }

    .padding-100 {
        padding-block: 50px;
    }

    .padding-150 {
        padding-block: 75px;
    }

    .sessions-wrapper .chat-sidebar {
        flex: 0 0 250px;
        max-width: 250px;
    }

    .contact-form-wrapper {
        border: 1px solid rgba(var(--dark-rgb), 0.1);
        border-radius: 0;
        border-end-start-radius: 16px;
        border-end-end-radius: 16px;
    }
    .doctor-modal .doctor-info figure{
        margin: 0 auto 16px;
    }
    .doctor-modal .doctor-info h5{
        justify-content: center;
    }
    .doctor-modal .rate{
        justify-content: center;
    }

}

@media (max-width:767px) {
    .consultation-steps .item {
        max-width: 100%;
        flex: 0 0 100%;
        text-align: center;
    }

    .future-custom-tabs nav .nav-tabs .nav-link {
        margin: 0;
        margin-inline-end: 10px;
    }

    .bg-section .title {
        font-size: 32px;
    }

    .hero {
        padding-top: 200px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .who-we-serve-slider .item .title {
        bottom: 16px;
        left: 16px;
    }

    .who-we-serve-slider .item .title .icon {
        margin-inline-end: 12px;
    }

    .timeline {
        padding-inline-start: 50px;
    }

    .timeline .point:before {
        right: auto;
        left: -50px;
    }

    .timeline .point:after {
        right: auto;
        left: -36px;
    }

    .timeline .timeline-line,
    .timeline .timeline-progress {
        margin: 0;
        left: 12px;
    }

    .upload-photo-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .dashboard-main {
        padding-inline: 0;
    }

    .upload-photo-wrapper .img-wrapper {
        margin: 0;
        margin-bottom: 16px;
    }

    .sessions-wrapper .chat-sidebar {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /*.sessions-wrapper .conversation {*/
    /*    border-radius: 0;*/
    /*    background: var(--white);*/
    /*    bottom: 0;*/
    /*    flex: 0 0 100%;*/
    /*    left: 0;*/
    /*    max-width: 100%;*/
    /*    position: fixed;*/
    /*    right: 0;*/
    /*    top: 0;*/
    /*    transform: translateX(150%);*/
    /*    transition: all .3s linear;*/
    /*    z-index: 100;*/
    /*}*/

    .sessions-wrapper .conversation.active {
        transform: translateX(0);
    }

    .sessions-wrapper .conversation .conversation-header,
    .sessions-wrapper .conversation .conversation-container,
    .sessions-wrapper .conversation .conversation-footer {
        padding-inline: 16px;
    }

    .sessions-wrapper .conversation .conversation-container .msg figure {
        flex: 0 0 24px;
        max-width: 24px;
        width: 24px;
        height: 24px;
    }

    .sessions-wrapper .conversation .conversation-container {
        height: calc(100vh - 171px);
    }

    .w-130 {
        width: 100%;
    }

    .contact-form-wrapper,
    .contact-sidebar {
        padding-inline: 16px;
    }

}

@media (max-width:480px) {
    .our-story-slider {
        padding-inline: 50px;
    }

    .video-wrapper.style-2 {
        height: 400px;
    }

    .min-h-400 {
        height: 400px;
        object-fit: cover;
        object-position: center;
    }
}

/*-----------End Responsive-----------*/