:root {
    /* Fonts */
    --default-font: "Sentic", sans-serif;
    --heading-font: "Chillax", sans-serif;
    --nav-font: "Sentic", sans-serif;

    /* Colors */
    --primary-color: #05555c;
    --secondary-color: #e99894;

    --default-color: #555555;
    --heading-color: #05555c;
    --accent-color: #05555c;
    --white-color: #ffffff;
    --divider-color: #20296E1A;
    --contrast-white-color: #edfcfd;

    /* Extra Colors */
    --light-gray: #f3f3f3;
    --border-gray: #ececec;
    --text-light: #838383;

    /* Navigation */
    --nav-color: #666666;
    --nav-hover-color: #05555c;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #555555;
    --nav-dropdown-hover-color: #05555c;

    scroll-behavior: smooth;
}

body {
    color: var(--default-color);
    background-color: var(--white-color);
    font-family: var(--default-font);
    letter-spacing: 0.02rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--default-font);
    font-weight: 500;
    margin: 0;
}
p,
ul li {
    font-size: 0.85rem;
    font-family: var(--default-font);
    color: var(--default-color);
    line-height: 1.5rem;
    letter-spacing: 0.01rem;
}
a,
input,
button {
    outline: none;
}
.container {
    max-width: min(100%, 1300px);
    padding: 0 1rem;
}

img,
iframe {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

.btn-primary {
    position: relative;
    display: inline-block;
    background: var(--primary-color);
    border-radius: 5px;
    font-size: 0.7rem;
    line-height: 1em;
    text-transform: UPPERCASE;
    color: var(--white-color);
    border: none;
    padding: 13px 46px 13px 30px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
    letter-spacing: 0.02rem;
}

.btn-primary:hover {
    background: transparent;
    color: var(--white-color);
}

.btn-primary::before {
    content: "\f061";
    font-family: "FontAwesome";
    position: absolute;
    top: 13px;
    right: 25px;
    font-size: 0.7rem;
    color: var(--white-color);
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.btn-primary:hover::before {
    transform: rotate(0deg);
}
.btn-primary::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: var(--secondary-color);
    transform: skew(30deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}
.btn-primary:hover:after {
    width: 100%;
    transform: skew(0deg);
    left: 0;
}
.btn-primary.btn-highlighted:hover {
    color: var(--secondary-color);
}
.btn-primary.btn-highlighted:hover:before {
    color: var(--secondary-color);
}
.btn-primary.btn-highlighted::after {
    background: var(--white-color);
}

.btn2 {
    background: var(--secondary-color);
}
.btn2:hover:after {
    background: var(--primary-color);
}

.btn-full {
    width: 100%;
}
.btn-full::before {
    display: none;
}
.btn-full i.rotate-icon {
    transition: transform 0.4s ease-in-out;
    transform: rotate(-45deg);
}
.btn-full:hover .rotate-icon {
    transform: rotate(0);
}
.no-arw{
    padding: 13px 30px;
}
.no-arw::before {
    display: none;
}
.readmore-btn {
    position: relative;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    color: var(--secondary-color);
    padding-right: 25px;
    transition: all 0.4s ease-in-out;
}
.btn-no-border{
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.btn-no-border::after{
    background: var(--primary-color) !important;
    color: var(--white-color);
}

/********* HEADER STYLES **********/
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 240, 248, 1),
        rgba(255, 245, 240, 1)
    );
    border-bottom: 1px solid #4430560d;
    transition: transform 0.3s ease;
    z-index: 999;
}
#navbar.fixed-top {
    background: var(--white-color);
}

.navbar .navbar-brand {
    width: 24.5%;
}
.navbar .navbar-collapse {
    width: 75.5%;
}
.navbar .navbar-brand img {
    max-height: 65px;
}
.navbar .navbar-nav .nav-link {
    font-size: 0.85rem;
    font-family: var(--nav-font);
    font-weight: 400;
    transition: 0.3s;
    padding: 10px 14px;
}
.navbar-nav .nav-link.active {
    color: var(--nav-hover-color);
}
.navbar-toggler {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 4px 6px;
}
.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}
.navbar-toggler:focus {
    box-shadow: none;
}

/********* SECTION STYLES **************/
section {
    color: var(--default-color);
    background-color: var(--white-color);
    padding: 90px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}
section.slide-section {
    background: var(--accent-color);
}
section h2 {
    font-size: 2rem;
    color: var(--heading-color);
    line-height: 2.8rem;
    margin-bottom: 10px;
}
section h2 span {
    color: var(--secondary-color);
}
section h3 {
    font-size: 1.1rem;
    color: var(--heading-color);
    margin-bottom: 5px;
}
section h4 {
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    position: relative;
    padding-left: 20px;
    font-weight: 400;
}

section h4::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    bottom: 0;
    transform: translateY(-50%);
    background-color: var(--secondary-color);
    width: 8px;
    height: 8px;
}
/*************************** SECTION STYLES ****************************************/

img.abouttopimg {
    max-height: 225px;
    object-fit: cover;
}
.page-title {
    color: var(--default-color);
    background-color: var(--white-color);
    position: relative;
}

.page-title .heading {
    padding: 80px 0;
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title nav ol li + li {
    padding-left: 10px;
}

.page-title nav ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/* footer */
footer {
    background: #05555c;
}
footer p {
    color: var(--white-color);
    font-size: 0.7rem;
}
.footer-heading {
    font-size: 0.9rem;
    font-family: var(--default-font);
    font-weight: 500;
    color: var(--white-color);
    line-height: 1.1em;
    margin-bottom: 25px;
}
ul.footer-links {
    font-size: 0.875rem;
}
ul.footer-links li {
    padding: 0px 0px 15px 0px;
}
.footer-para {
    font-size: 0.875rem;
}
.footer-touch {
    padding: 0px 0px 30px 0px;
}
.ftr-icon {
    margin-right: 10px;
}
.ftr-info {
    font-size: 0.75rem;
    font-family: var(--default-font);
    color: var(--white-color);
}
.form-input {
    font-size: 0.85rem;
    font-family: var(--default-font);
    color: var(--white-color);
    padding: 0.575rem 0.75rem;
}
.submit-btn {
    display: inline-flex;
    align-items: center;
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--secondary-color);
    font-size: 0.7rem;
    line-height: 1em;
    text-transform: UPPERCASE;
    padding: 12px 30px;
    letter-spacing: 0.02rem;
}
.submit-btn:hover {
    color: var(--white-color);
    background: color-mix(in srgb, var(--accent-color), black 10%);
}
.news-iform .submit-btn:hover {
    border: 1px solid var(--white-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.ptop {
    padding-top: 90px;
}
.hero {
    padding-top: 130px;
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 240, 248, 1),
        rgba(255, 245, 240, 1)
    );
    -webkit-background: linear-gradient(
        90deg,
        rgba(255, 240, 248, 1),
        rgba(255, 245, 240, 1)
    );
    -moz-background: linear-gradient(
        90deg,
        rgba(255, 240, 248, 1),
        rgba(255, 245, 240, 1)
    );
}

.hero .hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 24px;
    padding-left: 15px;
    position: relative;
}
.hero-badge::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    bottom: 0;
    transform: translateY(-50%);
    background-color: var(--secondary-color);
    width: 8px;
    height: 8px;
    margin-top: -1px;
}
.hero .hero-content .hero-badge i {
    color: var(--secondary-color);
    font-size: 14px;
}

.hero .hero-content .hero-badge span {
    font-family: "Sentic", Sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1rem;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
    text-transform: uppercase;
}
.hero .hero-content .hero-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: normal;
    font-family: "Sentic", Sans-serif;
    letter-spacing: -0.05rem;
    color: var(--heading-color);
    margin-bottom: 15px;
}
.hero .hero-content .hero-subtitle {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: normal;
    font-family: "Sentic", Sans-serif;
    letter-spacing: -0.02rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero .hero-content .hero-description {
    font-size: 0.9rem;
    line-height: 30px;
    color: var(--default-color);
    margin-bottom: 32px;
    letter-spacing: 0.02rem;
}

.hero .hero-content .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.hero .hero-content .hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero .hero-content .hero-features .feature-item i {
    color: var(--accent-color);
    font-size: 18px;
}

.hero .hero-content .hero-features .feature-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--default-color);
}

.hero .hero-content .hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.service-slider {
    overflow: hidden;
    margin: auto;
}

.service-slider .slide-track {
    display: flex;
    width: calc(250px * 10);
    animation: scroll 40s linear infinite;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-slider .slide {
    width: 200px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    background: rgb(255 255 255 / 4%);
    border-radius: 10px;
    font-weight: normal;
    font-size: 0.8rem;
    color: var(--white-color);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 5));
    }
}

/* Experience Boxes */
.experience {
    background-color: var(--light-gray);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-gray);
    padding-bottom: 0;
}

.experience i {
    font-size: 2.1875rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.icon-img {
    margin-bottom: 15px;
}

/* Expert Section */
.expert h3 {
    margin-bottom: 5px;
}
.expert i {
    font-size: 2.1875rem;
    color: var(--secondary-color) !important;
    margin-bottom: 25px;
}
.service-section {
    background-color: #f3f3f3;
    border-top: 1px solid#ececec;
    padding: 80px 0;
}
.features-grid {
    margin-top: 3rem;
}
.features-grid .feature-card {
    background-color: var(--white-color);
    padding: 2.8rem;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.features-grid .feature-card .feature-img {
    overflow: hidden;
    border-radius: 12px;
}
.features-grid .feature-card img {
    transition: transform 0.3s ease;
}
.features-grid .feature-card:hover img {
    transform: scale(1.07) translateY(-4px);
}
.features-grid .feature-card .feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.5rem;
    line-height: normal;
}
.features-grid .feature-card h3 {
    font-size: 1rem;
}
.features-grid .feature-card p {
    line-height: 1.6;
    margin: 0;
}
.feature-card .features-info {
    border-bottom: 1px solid #e5dede;
}
.whatwedobot {
    background-color: var(--light-gray);
    border-radius: 20px;
    padding: 0;
    border: 1px solid var(--border-gray);
}
.whatwedoinner {
    padding: 30px 20px;
}
.whatwedoinner i {
    font-size: 3rem;
    color: var(--secondary-color);
    line-height: normal;
}
.whatweimg {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}
ul.col2list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}
ul.col2list li {
    position: relative;
    line-height: 1.5em;
    padding-left: 30px;
    width: calc(50% - 15px);
}
ul.col2list li:before {
    content: "\f058";
    position: absolute;
    font-family: "Font Awesome 7 Free";
    top: 0;
    left: 0;
    font-weight: 900;
    font-size: 20px;
    color: var(--secondary-color);
}

/* experience flow */
.expflow-sec {
    background: var(--light-gray) url("../images/gynostepbg.jpg") no-repeat
        center center / cover;
    position: relative;
}
.expflow-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(233, 233, 233, 0.8);
    z-index: 1;
}
.expflow-sec * {
    position: relative;
    z-index: 2;
}
.heading-center {
    text-align: center;
    margin-bottom: 25px;
}
.heading-center::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #42b3e5;
    margin: 0 auto;
    margin-top: 15px;
}
.flow-wrap {
    position: relative;
    background: #fff;
    padding: 20px;
    height: 100%;
}
.flow-box {
    text-align: center;
}
.flow-icon {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.flow-title {
    font-size: 0.975rem;
}
.flow-time {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}
.flow-arrow {
    padding: 8px 10px;
    color: var(--white-color);
    background: var(--primary-color);
    opacity: 0.7;
    transform: translate(100%, -50%);
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 20;
}
.z-5 {
    z-index: 5 !important;
}
.z-4 {
    z-index: 4 !important;
}
.about-us i {
    font-size: 3.4rem;
}

.accordion-button {
    color: var(--primary-color);
    font-weight: 600;
}
.accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background-color: #f8f8f8;
    box-shadow: inset 0 -1px 0 #eeeeee;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-flush .accordion-collapse.show {
    background-color: #f8f8f8;
}
.accordion-body {
    font-size: 0.8rem;
}
.accordion-button {
    font-size: 0.9rem;
}

/* testimonial */
.testimonial-sec {
    background: var(--accent-color);
}
.testimonial-sec .border-start {
    border-left: var(--bs-border-width) var(--bs-border-style) #dee2e67d !important;
}
.tstitle {
    padding-bottom: 20px;
    border-bottom: var(--bs-border-width) var(--bs-border-style) #dee2e67d !important;
    margin-bottom: 30px;
}
.tstitle h4,
.tstitle h2 {
    color: var(--white-color);
}
.testimonial-carousel .carousel-control-next {
    margin: 0 3em;
}

.testimonial-carousel .control-btn i.fa-arrow-right,
.testimonial-carousel .control-btn i.fa-arrow-left {
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 10px;
    border-radius: 100%;
    transition: background 0.6s ease;
    width: 45px;
    height: 40px;
}

/* i.fa-arrow-right:hover,
i.fa-arrow-left:hover {
  border: 2px solid var(--secondary-color);
  background: var(--secondary-color);
  color: white;
} */

/* Indicators */
.carousel-indicators {
    justify-content: flex-start;
    transform: translate(-40px, 50px);
}
.testimonial-carousel .control-btn {
    position: absolute;
    bottom: 40px;
    right: 10em;
    z-index: 99;
}
.testimonial-carousel .carousel-control-next,
.testimonial-carousel .carousel-control-prev {
    top: 1em;
    left: 3em;
    opacity: 1;
}
.testimonial-carousel .carousel-control-next:hover,
.testimonial-carousel .carousel-control-prev:hover {
    opacity: 0.8;
}
.testimonial-text {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 20px;
}
.wow {
    position: relative;
    grid-column: span 2;
}
.carousel-landmark {
    grid-column: span 3;
}
.rating i {
    color: #fbbb00;
}
.avatar-group {
    display: flex;
    align-items: center;
}
.avatar {
    position: relative;
    transition: 0.2s;
}
.avatar:not(:first-child) {
    margin-left: -1.5rem;
}
.avatar:hover {
    z-index: 1;
    transform: translateY(-0.5rem);
}
.avatar-name {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}
.avatar-name::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 0.5rem solid;
    border-color: rgba(0, 0, 0, 0.7) transparent transparent;
}
.avatar:hover .avatar-name {
    opacity: 1;
    visibility: visible;
}
.avatar img {
    width: 4rem;
    height: 4rem;
    min-width: 3rem;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
}
ul.col2list.list1 li {
    width: 100%;
    color: var(--white-color);
}
.ts-happy h5,
.ts-happy p,
.ts-text,
.ts-profile,
.ts-profile h6 {
    color: var(--white-color);
}
.social-icons-foot i {
    font-size: 1.35rem;
    color: var(--white-color);
    margin-right: 0.8rem;
}
.footer-logo img {
    height: 60px;
}
.review-image-box {
    /* background: #FFFFFF1A; */
    /* backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px); */
    /* border-radius: 20px; */
    height: 100%;
}
.review-box {
    display: flex;
    align-items: center;
    /* border-right: 1px solid #FFFFFF1A; */
    margin-right: 20px;
    padding-right: 20px;
}
.review-icon {
    margin-right: 15px;
}
.review-icon img {
    width: 100%;
    max-width: 50px;
}
.review-content p {
    font-size: 1rem;
    line-height: normal;
    color: var(--white-color);
    margin-bottom: 5px;
}
.review-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.review-content ul li {
    display: inline-block;
    line-height: normal;
    color: var(--white-color);
    margin-right: 2px;
}
.review-content ul li i {
    font-size: 10px;
    color: #fbbb00;
    line-height: 18px;
    margin-left: 2px;
}
.customer-images {
    display: inline-flex;
    align-items: center;
}
.customer-img {
    position: relative;
    display: inline-block;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    overflow: hidden;
    margin-left: -20px;
    width: 52px;
    height: 52px;
    z-index: 1;
}
.customer-img:first-child {
    margin: 0;
}
.customer-img figure {
    display: block;
}
.customer-img img {
    max-width: 100%;
    border-radius: 50%;
}
.customer-img.add-more {
    width: 52px;
    height: 52px;
    background-color: var(--white-color);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.customer-img.add-more p {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
}
.phone-icon {
    background: var(--secondary-color);
    border-radius: 5px;
    padding: 0px 15px 0 10px;
}
.phone-icon i {
    font-size: 18px;
    color: var(--white-color);
}
.apt-text {
    color: var(--white-color);
    font-size: 0.75rem;
    margin-left: 10px;
    display: block;
    padding-left: 10px;
    border-left: 1px solid rgb(255 255 255 / 40%);
    line-height: 40px;
    text-transform: uppercase;
    letter-spacing: 0.02rem;
}
.aptbox:hover .phone-icon {
    background: var(--accent-color);
    color: var(--white-color);
}
.aptbox:hover .apt-text {
    color: var(--white-color);
}
.test-sec {
    background: url("../images/gynoccitestbg.jpg") no-repeat;
    background-position: top right;
    background-size: cover;
}
.test-sec h2 {
    margin-bottom: 10px;
}
.test-sec h4,
.test-sec h2 span {
    color: var(--white-color);
}
.testimonial-item {
    padding: 40px 80px;
}
.why-ayurveda {
    background: var(--light-gray);
}
.why-ayurveda .expert i {
    font-size: 3.5rem;
    color: var(--primary-color) !important;
}
.why-ayurveda h3 {
    margin: 20px 0;
}
.our-blog {
    padding: 30px 0 0;
}
.post-item {
    height: calc(100% - 30px);
}
.post-featured-image {
    overflow: hidden;
}
.post-featured-image a {
    cursor: none;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}
.post-featured-image figure {
    margin-bottom: 0;
}
.post-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 0.695;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
}
.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}
.post-item-body {
    margin: 15px 0;
}
.post-item-content {
    margin-bottom: 10px;
}

/* appointment popup */
.apt-form .form-control,
.apt-form .form-select {
    font-size: 0.8rem;
    padding: 0.6rem 0.6rem;
    color: #626262;
}
#bookApptform .btn-close {
    top: 15px;
    right: 15px;
}
#bookApptform .modal-title {
    color: var(--primary-color);
    font-size: 1.3rem;
}
#bookApptform .modal-title span {
    color: var(--secondary-color);
}
#bookApptform .modal-btns {
    text-align: right;
}
#bookApptform p {
    font-size: 0.8rem;
}
#bookApptform .modal-btns .btn-primary {
    padding: 12px 22px;
    border-radius: 5px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.02rem;
}
#bookApptform .modal-btns .btn-cancel {
    background: var(--nav-color);
}
#bookApptform .modal-btns .btn-primary::before {
    display: none;
}
.login-sec {
    width: 40%;
    margin: 0 auto;
}

/* inner pages */
.inner-bnr {
    padding: 130px 0 40px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /* background: linear-gradient(
        90deg,
        rgba(255, 240, 248, 1),
        rgba(255, 245, 240, 1)
    );
    -webkit-background: linear-gradient(
        90deg,
        rgba(255, 240, 248, 1),
        rgba(255, 245, 240, 1)
    );
    -moz-background: linear-gradient(
        90deg,
        rgba(255, 240, 248, 1),
        rgba(255, 245, 240, 1)
    ); */
}
.wht-header{
    background: #FFFFFF !important;
}
.inner-bnr::before{
    content: "";
    background: rgba(251,215,220, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.heading-bnr span {
    color: var(--secondary-color);
}
.contact .container {
    position: relative;
    z-index: 1;
}
.contact .contact-intro {
    margin-bottom: 40px;
}
.contact .contact-channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}
.contact .channel-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--light-gray);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact .channel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px
        color-mix(in srgb, var(--default-color), transparent 92%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}
.contact .channel-card:hover .channel-icon {
    background: var(--accent-color);
    transform: scale(1.05);
}
.contact .channel-card:hover .channel-icon i {
    color: var(--white-color);
    line-height: normal;
}
.contact .channel-card .channel-icon {
    width: 48px;
    height: 48px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact .channel-card .channel-icon i {
    font-size: 20px;
    color: var(--accent-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact .channel-card .channel-info {
    flex: 1;
}
.contact .channel-card .channel-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--heading-color);
}
.contact .channel-card .channel-info p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--default-color);
}
.contact .channel-card .channel-info .channel-meta {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.contact .trust-indicators {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--light-gray);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 12px;
}
.contact .trust-indicators .indicator-item {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}
.contact .trust-indicators .indicator-item:last-child {
    border-right: none;
}
.contact .trust-indicators .indicator-item .indicator-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 4px;
    line-height: 1;
}
.contact .trust-indicators .indicator-item .indicator-label {
    font-size: 13px;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.contact .form-wrapper {
    background: var(--light-gray);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px
        color-mix(in srgb, var(--default-color), transparent 94%);
}
.contact .form-wrapper .form-header {
    margin-bottom: 32px;
}
.contact .form-wrapper .form-header h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: var(--heading-color);
}
.contact .form-wrapper .form-header p {
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 0;
}
.contact .form-wrapper .php-email-form .form-group {
    margin-bottom: 20px;
}
.contact .form-wrapper .php-email-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 8px;
}
.contact .form-wrapper .php-email-form .form-group .form-control {
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--default-color);
    background-color: var(--light-gray);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact .form-wrapper .php-email-form .form-group .form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px
        color-mix(in srgb, var(--accent-color), transparent 90%);
}
.contact .form-wrapper .php-email-form .form-group .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}
.contact .form-wrapper .php-email-form .form-group select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.contact .form-wrapper .php-email-form .form-group textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}
.contact .form-wrapper .php-email-form .form-check-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}
.contact .form-wrapper .php-email-form .form-check-group .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
    border-radius: 4px;
    flex-shrink: 0;
}
.contact
    .form-wrapper
    .php-email-form
    .form-check-group
    .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}
.contact .form-wrapper .php-email-form .form-check-group .form-check-label {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    cursor: pointer;
    line-height: 1.5;
}
.page-header-box ul {
    list-style: none;
    line-height: 1.3em;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    text-align: center;
}
.page-header-box ul li {
    color: var(--accent-color);
    display: inline-block;
}
.page-header-box ul li:before {
    content: "/";
    margin: 0 8px;
}
.page-header-box ul li:first-child:before {
    display: none;
}
.post-single-image {
    margin-bottom: 30px;
    overflow: hidden;
}
.post-single-image img {
    width: 100%;
    aspect-ratio: 1 / 0.5;
    object-fit: cover;
    border-radius: 20px;
}
.image-anime {
    position: relative;
    overflow: hidden;
}
.image-anime:after {
    content: '';
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}
.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}
.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.post-entry {
    border-bottom: 1px solid var(--default-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}
.post-entry:after {
    content: "";
    display: block;
    clear: both;
}
.post-entry p {
    margin-bottom: 20px;
}
.post-entry p:last-child {
    margin-bottom: 0;
}
.post-entry a {
    color: var(--secondary-color);
}
.post-entry ul {
    padding-left: 20px;
    margin: 20px 0;
}
.post-entry ul li {
    margin-bottom: 10px;
    color: var(--nav-color);
}
.post-entry ol {
    margin: 20px 0;
}
.post-entry ol li {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
    color: var(--nav-color);
}
.post-entry ul li a {
    color: var(--nav-color);
}
.post-entry blockquote {
    background: var(--primary-color) url("../images/icon-blockquote.svg")
        no-repeat;
    background-position: 30px 30px;
    background-size: 45px;
    border: 1px solid var(--default-color);
    border-radius: 18px;
    padding: 30px 30px 30px 90px !important;
    margin-bottom: 30px !important;
}
.post-entry blockquote p {
    font-size: 1.2rem !important;
    color: var(--contrast-white-color);
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.5em;
}
.post-entry blockquote p:last-child {
    margin-bottom: 0;
}
.post-entry blockquote cite {
    font-size: 18px;
    color: var(--secondary-color);
}
.post-entry table {
    border-top: 1px solid var(--default-color);
    border-left: 1px solid var(--default-color);
}
.post-entry table tr td,
.post-entry table tr th {
    border-right: 1px solid var(--default-color);
    border-bottom: 1px solid var(--default-color);
    padding: 4px 10px;
}
.post-entry .wp-block-latest-posts.wp-block-latest-posts__list {
    list-style: inherit;
    padding-left: 20px;
}
.post-entry .has-fixed-layout tr td {
    border-color: inherit;
}
.tag-links {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.post-tags .tag-links a {
    display: inline-block;
    font-size: 0.925rem;
    font-weight: 500;
    line-height: 1em;
    text-transform: capitalize;
    background-color: var(--secondary-color);
    color: var(--contrast-white-color);
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease-in-out;
}
.post-tags .tag-links a:hover {
    background-color: var(--primary-color);
}
.post-social-sharing {
    text-align: right;
}
.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.post-social-sharing ul li {
    display: inline-block;
    margin-right: 12px;
}
.post-social-sharing ul li:last-child {
    margin-right: 0;
}
.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--contrast-white-color);
    border-radius: 100px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}
.post-social-sharing ul li a:hover {
    background-color: var(--primary-color);
}
.post-social-sharing ul li a i {
    font-size: 18px;
}
.post-entry hr,
.comment-content hr {
    border-top: 1px solid var(--default-color);
    opacity: 1;
}
.post-entry table caption {
    text-align: center;
}
.post-entry .wp-block-rss {
    list-style: inherit;
}
.post-entry .wp-block-social-links {
    padding: 0;
}
.post-entry .wp-block-calendar {
    margin-bottom: 20px;
}
.page-single-post .comment-box {
    max-width: 1100px;
    margin: 80px auto 0;
}
.page-single-post .comment-box a,
.wp-block-post-comments-form a {
    color: var(--accent-color);
}
.comment-box .comment-respond:not(:first-child) {
    margin-top: 60px;
}
.page-single-post .comment-box .comment-reply-title,
.page-single-post .comment-box .title-comments,
.wp-block-post-comments-form .comment-reply-title,
.wp-block-post-comments-form .title-comments {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 10px;
}
.page-single-post .comment-box .comment-reply-title,
.wp-block-post-comments-form .comment-reply-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.page-single-post .comment-box .comment-reply-title #cancel-comment-reply-link,
.wp-block-post-comments-form .comment-reply-title #cancel-comment-reply-link {
    font-size: 14px;
    font-weight: 400;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 8px;
    text-transform: capitalize;
    padding: 5px 10px;
    transition: all 0.4s ease-in-out;
}
.page-single-post
    .comment-box
    .comment-reply-title
    #cancel-comment-reply-link:hover,
.wp-block-post-comments-form
    .comment-reply-title
    #cancel-comment-reply-link:hover {
    background: var(--primary-color);
}
.page-single-post .comment-box .title-comments {
    margin-bottom: 30px;
}
.comment-form {
    display: flex;
    flex-wrap: wrap;
}
.comment-form p:last-child {
    margin-bottom: 0;
}
.comment-form .comment-notes,
.comment-form .comment-form-comment,
.comment-form .comment-form-cookies-consent,
.comment-form .form-submit {
    width: 100%;
}
.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-author,
.comment-form .comment-form-email {
    width: calc(33.33% - 20px);
    margin-right: 30px;
}
.comment-form .comment-form-url {
    width: calc(33.33% - 20px);
}
.comment-form label {
    display: block;
    margin-bottom: 4px;
}
.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    width: 100%;
    padding: 18px 20px;
    border: none;
    box-shadow: none;
    color: var(--default-color);
    background: var(--light-gray);
    border-radius: 10px;
    outline: 0;
}
.comment-form .comment-form-cookies-consent {
    position: relative;
    padding-left: 20px;
}
.comment-form .comment-form-cookies-consent label {
    display: inline-block;
}
.comment-form .comment-form-cookies-consent input[type="checkbox"] {
    margin-top: 0 !important;
    margin-right: 4px;
    top: 6px;
    left: 0;
    position: absolute;
}
.comment-form .form-submit .submit {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    border: none;
    padding: 17px 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: 0.4s ease-in-out;
}
.comment-form .form-submit .submit:hover {
    background: var(--primary-color);
}
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.comment-list li {
    list-style: none;
}
.comment-list .comment .comment-body {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--default-color);
}
.comment-list .comment:last-child {
    margin-bottom: 0;
}
.comment-list .comment .comment-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.comment-list .comment .comment-meta .comment-author img {
    max-width: 42px;
    aspect-ratio: 1/1;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-right: 10px;
}
.comment-list .comment .comment-meta .comment-author b {
    font-weight: 400;
}
.comment-list .comment .comment-meta .comment-author a {
    color: var(--primary-color);
}
.comment-list .comment .comment-meta .comment-metadata a {
    color: var(--contrast-white-color);
    transition: all 0.4s ease-in-out;
}
.comment-list .comment .comment-meta .comment-metadata a:hover {
    color: var(--accent-color);
}
.comment-list .comment .comment-meta .comment-metadata .comment-edit-link {
    color: var(--accent-color);
    margin-left: 10px;
}
.comment-list .comment .comment-content p:last-child {
    margin-bottom: 0;
}
.comment-list .comment .reply a {
    margin-top: 10px;
    display: inline-block;
    background: var(--accent-color);
    padding: 2px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    color: var(--white-color) !important;
    transition: all 0.4s ease-in-out;
}
.comment-list .comment .reply a:hover {
    background: var(--primary-color);
}
.comment-content h1,
.comment-content h2,
.comment-content h3,
.comment-content h4,
.comment-content h5,
.comment-content h6 {
    color: var(--primary-color);
    margin: 0.8em 0;
}
.comment-content table {
    width: 100%;
    border-top: 1px solid var(--default-color);
    border-left: 1px solid var(--default-color);
}
.comment-content table tr td,
.comment-content table tr th {
    border-right: 1px solid var(--default-color);
    border-bottom: 1px solid var(--default-color);
    padding: 4px 10px;
}
.comment-content table tr th {
    color: var(--primary-color);
    font-size: 18px;
}
.comment-content ul {
    padding-left: 20px;
    margin: 0 0 1.7em;
}
.comment-body li {
    list-style: initial;
}
.comment-content ul li {
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.comment-content ul ul {
    margin-top: 10px;
    margin-bottom: 0;
}
.comment-content ol ol {
    margin-top: 10px;
}
.comment-content ol li {
    list-style: decimal;
    margin-bottom: 10px;
}
.page-service-single{
	padding: 100px 0;
}
.page-single-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 20px;
}
.page-catagory-list{
	border: 1px solid var(--divider-color);
    border-radius: 20px;
    margin-bottom: 60px;
	overflow: hidden;
}
.page-catagory-list h3{
	font-size: 20px;
    text-transform: capitalize;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 25px 30px;
}
.page-catagory-list ul{
    list-style: none;
    margin: 0;
    padding: 30px;
}
.page-catagory-list ul li{
	line-height: 1.5em;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}
.page-catagory-list ul li:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}
.page-catagory-list ul li a{
    position: relative;
	display: block;
    text-transform: capitalize;
    color: var(--text-color);
	padding-right: 30px;
    transition: all 0.3s ease-in-out;
}
.page-catagory-list ul li a:hover{
    color: var(--primary-color);
}
.page-catagory-list ul li a::before{
	content: '\f061';
    font-family: 'FontAwesome';
    position: absolute;
	top: 0;
	right: 0;
	font-size: 18px;
	color: var(--text-color);
	transform: rotate(-45deg);
	transition: all 0.3s ease-in-out;
}
.page-catagory-list ul li a:hover:before{
	color: var(--primary-color);
	transform: rotate(0);
}
.faqs-contact-box.sidebar-cta-box{
	max-width: 100%;
}
.faqs-contact-box.sidebar-cta-box .cta-contact-item{
	width: 100%;
	border-right: none;
	border-bottom: 1px solid var(--dark-divider-color);
	margin: 0;
	padding: 0 0 20px 0;
}
.faqs-contact-box.sidebar-cta-box .cta-contact-item:last-child{
	padding: 0;
	border-bottom: none;
}
.page-single-image{
    margin-bottom: 40px;
}
.page-single-image figure{
    display: block;
    border-radius: 20px;
}
.page-single-image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.574;
    border-radius: 20px;
}
.service-expert-box,
.service-path-box,
.service-step-box{
	margin-top: 60px;
}
.service-expert-image-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 10px 0 0 60px;
	margin-top: 40px;
	overflow: hidden;
}
.service-expert-list{
	width: calc(62% - 15px);
	align-content: center;
	padding: 20px 0 30px 0;
}
.service-expert-item{
	margin-bottom: 40px;
}
.service-expert-item:last-child{
	margin-bottom: 0;
}
.service-expert-item h3{
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
}
.service-expert-item h3::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    top: 0;
    left: 0;
    font-weight: 900;
    font-size: 20px;
    color: var(--secondary-color);
}
.service-expert-item p{
	margin-bottom: 0;
}
.service-expert-image{
	width: calc(38% - 15px);
	align-content: end;
}
.service-expert-image figure{
	display: block;
}
.service-expert-image img{
    width: 100%;
    aspect-ratio: 1 / 1.23;
    object-fit: cover;
    border-radius: 20px;
    object-fit: cover;
    object-position: top; 
}
.service-entry-image-content{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}
.service-entry-image,
.service-entry-content{
	width: calc(50% - 15px);
}
.service-entry-image figure{
	display: block;
	border-radius: 20px;
	height: 100%;
}
.service-entry-image img{
	width: 100%;
	aspect-ratio: 1 / 0.576;
	object-fit: cover;
	border-radius: 20px;
}
.service-entry-content{
	border: 1px solid var(--divider-color);
	align-content: center;
	border-radius: 20px;
	padding: 40px;
}
.service-entry-content h3{
	font-size: 20px;
	margin-bottom: 15px;
}
.service-entry-content p{
	margin-bottom: 0;
}
.service-path-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	background: var(--light-gray);
	border-radius: 20px;
	padding: 30px;
	margin-top: 40px;
}
.service-path-item{
	position: relative;
	width: calc(33.33% - 20px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}
.service-path-item::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--secondary-color);
	border-radius: 500px 500px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}
.service-path-item:hover::before{
	border-radius: 0;
	height: 100%;
}
.service-path-item .icon-box,
.service-path-item-content{
	position: relative;
	z-index: 1;
}
.service-path-item .icon-box{
	margin-bottom: 60px;
}
.service-path-item .icon-box img{
	width: 100%;
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}
.service-path-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}
.service-path-item-content h3{
	font-size: 20px;
	margin-bottom: 10px;
	transition: all 0.4s ease-in-out;
}
.service-path-item-content p{
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}
.service-path-item:hover .service-path-item-content h3,
.service-path-item:hover .service-path-item-content p{
	color: var(--white-color);
}
.service-step-list-image{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-top: 40px;
}
.service-step-list,
.service-step-image{
	width: calc(50% - 15px);
}
.service-step-list{
	padding-left: 45px;
}
.service-step-list .work-step-item h3,
.service-step-list .work-step-item p{
	color: var(--text-color);
}
.service-step-list .work-step-item h2{
	font-size: 1.2rem;
  line-height: normal;
	margin-bottom: 10px;
	color: var(--primary-color);
}
.service-step-image figure{
	display: block;
	border-radius: 20px;
}
.service-step-image img{
	width: 100%;
	aspect-ratio: 1 / 1.101;
	object-fit: cover;
	border-radius: 20px;
}
.how-it-work{
	padding: 100px 0;
}
.work-step-nav{
	margin-bottom: 60px;
}
.work-step-nav .nav-tabs{
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 30px;
	border: none;
}
.work-step-nav ul li{
	width: calc(33.33% - 20px);
}
.work-step-nav ul li .nav-link{
	width: 100%;
	display: flex;
	justify-content: center;
    align-items: center;
    background: var(--dark-divider-color);
	border: none;
    color: var(--white-color);
	font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
	padding: 25px;
	border-radius: 20px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}
.work-step-nav ul li .nav-link.active,
.work-step-nav ul li .nav-link:hover{
    background: var(--accent-color);
    color: var(--white-color);
}
.work-step-nav ul li .nav-link img{
	width: 100%;
	max-width: 30px;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}
.work-step-nav ul li .nav-link.active img,
.work-step-nav ul li .nav-link:hover img{
	filter: brightness(0) invert(1);
}
.work-step-content{
	padding-left: 50px;
}
.work-step-item{
	position: relative;
	margin-bottom: 40px;
}
.work-step-item:last-child{
	margin-bottom: 0;
}
.work-step-item::before{
	content: '\f192';
    position: absolute;
    font-family: 'FontAwesome';
    font-weight: 900;
    left: -33px;
    top: 9px;
	font-size: 18px;
    color: var(--secondary-color);
	z-index: 1;
}
.work-step-item::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
	transform: translate(-25px, 55px);
    border-left: 1px solid var(--secondary-color);
    width: 1px;
    height: calc(100% + 25px);
}
.work-step-item:last-child:after{
    display: none;
}
.work-step-item h3{
	font-size: 0.925rem;
	font-weight: 400;
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 10px;
}
.work-step-item p{
	color: var(--white-color);
	margin-bottom: 0;
}
.work-step-btn{
	margin-top: 40px;
}
.work-step-image figure{
	display: block;
	border-radius: 20px;
}
.work-step-image img{
	width: 100%;
	aspect-ratio: 1 / 0.646;
	object-fit: cover;
	border-radius: 20px;
}

.our-approach{
	background: url('../images/section-bg-imgae.png') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.our-approach-image{
	margin-right: 15px;
}

.our-approach-image figure{
	display: block;
	border-radius: 20px;
}

.our-approach-image img{
	width: 100%;
	aspect-ratio: 1 / 1.45;
	object-fit: cover;
	border-radius: 20px;
}

.approach-item-box{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.approach-item{
	width: 100%;
	background: var(--primary-color);
	border-radius: 20px;
	padding: 30px;
}

.approach-item-box .approach-item:nth-child(even){
	background: var(--secondary-color);
}

.approach-item .icon-box{
	margin-bottom: 15px;
}

.approach-item .icon-box img{
	max-width: 30px;
}

.approach-item-content h3{
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.approach-item-content p{
	color: var(--white-color);
	margin: 0;
}

.approach-item-content ul.col2list li{
    width: 100%;
	color: var(--white-color);
	margin: 0;
    line-height: normal;
}
.approach-item-content ul.col2list li:before{
    font-size: 13px;
    color: var(--white-color);
	margin: 0;
    top: 3px;
}
.about-us-img-1 img {
    width: 100%;
    aspect-ratio: 1 / 0.55;
    object-fit: cover;
    border-radius: 30px;
}
.who-we-are .col2list.list1 li{
    color: var(--default-color);
}

.service-item{
	position: relative;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 20px;
	overflow: hidden;
}

.service-item:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--light-gray);
	border-radius: 20px;
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-item.active::before,
.service-item:hover::before{
	transform: translate(100%, -100%);
}

.service-image{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-image,
.service-item:hover .service-image{
	opacity: 1;
}

.service-image::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;	
	background-color: var(--primary-color);
	opacity: 80%;
}

.service-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.service-body{
	position: relative;
    z-index: 2;
}

.service-body .icon-box{
	margin-bottom: 15px;
}

.service-body .icon-box img{
	width: 100%;
	max-width: 35px;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-body .icon-box img,
.service-item:hover .service-body .icon-box img{
	filter: brightness(0) invert(1);
}

.service-content{
	transform: translateY(55px);
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-content,
.service-item:hover .service-content{
	transform: translateY(0px);
}

.service-content-info h3{
	font-size: 18px;
	line-height: 1.4em;
	margin-bottom: 10px;
	transition: all 0.4s ease-in-out;
}

.service-content-info a{
	color: inherit;
}

.service-content-info p{
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-content p,
.service-item:hover .service-content p,
.service-item.active .service-content h3,
.service-item:hover .service-content h3{
	color: var(--white-color);
}

.service-readmore-btn{
	opacity: 0;
	visibility: hidden;
	margin-top: 20px;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-readmore-btn,
.service-item:hover .service-readmore-btn{
	opacity: 1;
	visibility: visible;
}

.service-readmore-btn a{
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.service-readmore-btn a:hover{
	color: var(--accent-color);
	background: var(--white-color);
}

.service-readmore-btn a i{
	font-size: 20px;
	color: inherit;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.service-readmore-btn a:hover i{
	transform: rotate(0);
}


.case-study-guide-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 40px 0;
}

.case-study-guide-item{
	width: calc(33% - 30px);
	display: flex;
	align-items: center;
	background: var(--border-gray);
	border-radius: 20px;
	padding: 30px;
}

.case-study-guide-item img{
	width: 100%;
	max-width: 40px;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.case-study-guide-item:hover img{
	transform: rotateY(180deg);
	filter: brightness(0) invert(0);
}

.case-study-guide-item h3{
	font-size: 16px;
	line-height: 1.4em;
}

.benefits-item-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.benefits-item{
	position: relative;
	width: calc(50% - 15px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}

.benefits-item::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
	border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.benefits-item.active::after,
.benefits-item:hover::after{
	height: 100%;
	border-radius: 0;
}

.benefits-item .icon-box{
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.benefits-item .icon-box img{
	max-width: 40px;
	transition: all 0.4s ease-in-out;
}

.benefits-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.benefits-item-content{
	position: relative;
	z-index: 1;
}

.benefits-item-content h3{
	font-size: 18px;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.benefits-item-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.benefits-item:hover .benefits-item-content h3,
.benefits-item:hover .benefits-item-content p{
	color: var(--white-color);
}

.benefits-image{
	background: url('../images/benefits-image-bg.svg') no-repeat;
	background-position: center center;
	background-size: 100% auto;
	text-align: center;
	padding: 0 80px;
	margin-left: 30px;
}

.benefits-image figure{
	display: block;
	border-radius: 999px 999px 60px 60px;
}

.benefits-image img{
	width: 100%;
	border-radius: 999px 999px 60px 60px;
	aspect-ratio: 1 / 1.378;
	object-fit: cover;
}

.search-box{
    font-family: var(--default-font);
}
.service-expert-list1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.service-expert-list1 .service-expert-item {
    margin-bottom: 0;
    border: 1px solid #ececec;
    padding: 20px;
    border-radius: 20px;
    flex: 0 0 48%; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    box-sizing: border-box;
}
.section-search {
    background: #f9f9f9 url('../images/search-bg.webp') no-repeat bottom center;
    background-size: 100% auto;
    position: relative;
    background-blend-mode: Darken;
    padding: 120px 0 30px 0;
}
.section-search .banner-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.section-search .banner-wrapper .banner-header {
    margin: 0 0 30px;
}
.section-search .banner-wrapper .banner-header h1 {
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 10px;
}
.section-search .banner-wrapper .banner-header p {
    color: #757575;
    font-size: 20px;
    margin: 0;
}
.section-search .banner-wrapper .search-box form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
}
.section-search .banner-wrapper .search-box .search-location {
    -ms-flex: 0 0 500px;
    flex: 0 0 500px;
    margin-right: 12px;
    position: relative;
    width: 500px;
}
.section-search .banner-wrapper .search-box .form-control {
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: .575rem 2rem;
    padding-left: 45px;
    font-family: var(--default-font);
    -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075);
    font-size: 0.85rem;
}
.section-search .banner-wrapper .search-box .form-control::placeholder {
    color: var(--border-gray);
}
.section-search .banner-wrapper .search-box .search-location .form-control {
    background: #ffffff url('../images/location.webp') no-repeat 10px center;
}
.section-search .banner-wrapper .search-box .search-info .form-control {
    background: #ffffff url('../images/search.webp') no-repeat 10px center;
}
.section-search .banner-wrapper .search-box .form-text {
    color: #757575;
    font-size: 13px;
    display: inline-block;
}
.section-search .banner-wrapper .search-box .search-info {
    -ms-flex: 0 0 490px;
    flex: 0 0 490px;
    margin-right: 12px;
    position: relative;
    width: 490px;
}
.section-search .banner-wrapper .search-box .search-btn {
    width: 37px;
    height: 37px;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.section-search .banner-wrapper .search-box .search-btn span {
    display: none;
    font-weight: 500;
}
.section-search .banner-wrapper .search-box .search-btn::before {
    display: none;
}

.card {
    border: 1px solid #E6E8EE;
    box-shadow: 0px 4px 14px 0px rgba(226, 237, 255, 0.25);
    margin-bottom: 24px;
    color: inherit;
    border-radius: 10px;
}

.card-body {
    flex: 1 1 auto;
    padding: 20px;
    color: var(--bs-card-color);
}

.doctor-widget .doc-name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 3px;
}
.rating {
    list-style: none;
    width: 100%;
    margin: 0 0 8px;
    padding: 0;
}
.doctor-widget .average-rating {
    color: #012047;
    font-size: 14px;
    font-weight: 500;
}
.clinic-details {
    margin-bottom: 15px;
}
.doctor-widget .rating i {
    font-size: 14px;
}
.rating i.filled {
    color: #FFCA18;
}
.badge.badge-primary {
    background: var(--accent-color);
    box-shadow: 0 1px 1px rgba(14, 130, 253, 0.5);
    color: #FFF;
}
.city-search-icons p{
    text-align: center;
}
.city-search-icons img{
    opacity: 0.7;
}
.city-clinics{
    background: var(--light-gray);
}

.clinic-tabs .nav-tabs .nav-link, .clinic-tabs .nav-tabs .nav-link.active,
.clinic-tabs .nav-tabs .nav-link:focus, .clinic-tabs .nav-tabs .nav-link:hover{
    border: none;
    outline: none;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--nav-color);
    width: 100%;
}
.clinic-tabs .nav-tabs .nav-link:hover{
    color: var(--primary-color);
    border-bottom: 1px solid #adadad;
}
.clinic-tabs .nav-tabs .nav-link.active{
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}
.clinic-tabs .nav-tabs .nav-item{
    flex-grow: 1;
    flex-basis: 0;
}
.clinic-tabs .tab-pane{
    padding: 15px 10px;
}
.location-list {
    border-width: 1px;
    border-style: solid;
    border-color: rgb(240, 240, 240);
    border-image: initial;
    border-radius: 4px;
    padding: 20px;
}
.clinic-content .clinic-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
}
.clinic-details h5 {
    font-size: 14px;
    font-weight: 400;
    color: var(--default-font);
    margin-bottom: 25px;
}
.clinic-details ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.clinic-details ul li {
    display: inline-block;
    padding-right: 5px;
}
.clinic-details ul li a {
    display: inline-block;
}
.timings-days {
    font-weight: 700;
    color: var(--default-font);
    margin-bottom: 8px;
}
.clinic-details ul li a img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    object-fit: cover;
}
.business-widget {
    background-color: #fcfcfc;
    border: 1px solid #f0f0f0;
    margin-bottom: 0;
    padding: 20px;
}
.listing-day{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.listing-day .day{
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--default-font);
    color: var(--default-color);
    line-height: 1.5rem;
    letter-spacing: 0.01rem;
}
.listing-day.current {
    border-bottom: 1px solid var(--default-color);
    color: var(--default-color);
    padding-bottom: 13px;
    margin-bottom: 13px;
}
.listing-day .day span {
    display: block;
    text-align: right;
    font-weight: 400;
    font-size: 0.85rem;
    font-family: var(--default-font);
    color: var(--default-color);
    line-height: 1.5rem;
    letter-spacing: 0.01rem;
}
.time-items {
    color: var(--default-color);
}
.time-items > span.open-status {
    margin-bottom: 3px;
}
.time-items > span {
    display: block;
    text-align: right;
    font-size: 0.85rem;
    font-family: var(--default-font);
    color: var(--default-color);
    line-height: 1.5rem;
    letter-spacing: 0.01rem;
}
.time-items > span.open-status .badge {
    background: var(--accent-color);
    color: var(--contrast-white-color);
}
.bg-danger-light {
    background-color: #FFEDE9 !important;
    color: var(--secondary-color) !important;
}
.other-clinic .doc-info-cont h4{
    padding-left: 0;
    margin-bottom: 5px !important;
    letter-spacing: normal;
}
.other-clinic .doc-info-cont h4::before{
    display: none;
}
.other-clinic .doc-info-cont p{
    font-size: 13px;
    line-height: 22px;
}
.our-facts{
	background: url('../images/section-bg-imgae.png') no-repeat;
    background-position: center center;
    background-size: cover;
	padding: 100px 0;
}

.fact-image figure{
	display: block;
	border-radius: 20px;
}

.fact-image img{
	width: 100%;
	aspect-ratio: 1 / 0.655;
	object-fit: cover;
	border-radius: 20px;
}

.fact-info-box .fact-image{
	margin-bottom: 40px;
}

.fact-info-box .fact-image img{
	aspect-ratio: 1 / 0.555;
}
.fact-info-box li h4{
    padding-left: 0;
    letter-spacing: normal;
    margin-bottom: 5px;
}
.fact-info-box li h4::before{
    display: none;
}
.fact-info-box li p{
    margin-bottom: 0;
}

.why-choose-gyc .service-expert-list1 .service-expert-item{
    flex: 0 0 32%;
    background: var(--light-gray);
}