@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Marcellus&display=swap');

:root {
    --title-color: #101437;
    --link-hover: #53A9FF;
    --text-color: #4a4a4a;
    --light-bg: #FFFAF6;
    --border: #ddd;
    --white: #fff;

    --header-ff: "Marcellus", serif;
    --text-ff: "Inter", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--text-ff);
    color: var(--text-color);
    font-size: 100%;
}

ul,
ol {
    list-style: none;
    padding-left: 0;
    font-size: .875rem;
}

img {
    width: 100%;
    border-radius: 5px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--header-ff);
    color: var(--title-color);
    line-height: 1.4;
    margin-bottom: 1rem;
}

h6 {
    font-family: var(--text-ff);
    color: var(--title-color);
    text-transform: uppercase;
}

p {
    font-family: var(--text-ff);
    font-size: .875rem;
    line-height: 1.8;
}
p:last-child {
    margin-bottom: 0;
}

h1,
.h1 {
    font-size: 3rem;
    line-height: 1.2em;
}

h2,
.h2 {
    font-size: 2rem;
}

h3,
.h3 {
    font-size: 1.875rem;
}

h4,
.h4 {
    font-size: 1.5rem;
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

button:focus {
    border: 0;
    outline: 0 !important;
}

a,
.btn {
    transition: all .3s ease-out;
    text-decoration: none;
    border-radius: 5px;
    font-size: .875rem;
}

/*-------------------- Common Styles --------------------*/
.bottom-space {
    margin-bottom: 6.25rem;
}
.main-btn {
    background: var(--title-color);
    border: none;
    border-radius: 3px;
    color: var(--white);
    padding: 12px 24px;

    &:hover,
    &:focus {
        background: var(--link-hover);
        color: var(--white);
        outline: none;
    }
}

/*-------------------- Header Styles --------------------*/
.custom-header {
    --bs-navbar-padding-y: 1rem;
    background: var(--white);
}

.navbar-brand img {
    width: 166px;
}

.custom-header .navbar-nav .nav-link {
    color: var(--title-color);
    padding-inline: 0;
    margin-inline: 1rem;

    &:hover,
    &.active {
        color: var(--link-hover);
    }
}

.navbar-toggler {
    padding: 0;
    border: none;

    &:focus,
    &:active,
    .navbar-toggler-icon:focus {
        outline: none;
        box-shadow: none;
    }
}

/*-------------------- Hero Styles --------------------*/
.hero-section {
    margin-top: 8rem;
}
.hero-content {
    display: flex;
    justify-content: space-between;
    gap: 1.875rem;
}
.hero-caption {
    display: flex;
    flex-direction: column;
}

/*-------------------- Facilities Styles --------------------*/
.facilities-section {
    background: var(--light-bg);
    padding-block: 6.25rem;
}
.facilities-box-wrap {
    margin-top: -100px;
}

/*-------------------- Home About Styles --------------------*/
.about-data h2 {
    position: relative;
    padding-bottom: 30px;

    &::after {
        content: '';
        position: absolute;
        border-bottom: 3px solid var(--title-color);
        width: 60px;
        display: block;
        padding-top: 25px;
    }
}

/*-------------------- Treatments Style --------------------*/
.accordion {
    border: none;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-btn-focus-border-color: unset;
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-border-radius: 0;
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-body-padding-x: 0;
}
.accordion-button:not(.collapsed) {
    box-shadow: none;
}
.accordion-header h4 {
    margin-bottom: 0;
}
.accordion-item {
    border: 2px solid var(--title-color);
}
.accordion-body {
    padding-block: 0 15px;
}

/*-------------------- Testimonial Style --------------------*/
.testimony-wrap {
    border-top: 1px solid var(--border);
    padding-top: 6.25rem;
}
.testimonial-slider .carousel-indicators button {
    width: 10px;
    height: 10px;
    background-color: var(--link-hover);
    border-radius: 100%;
}
.carousel-item {
    margin-top: 30px;

    & i {
        font-size: 3rem;
        margin-bottom: 30px;
        color: var(--link-hover);
    }
    &.blockquote {
        font-size: 1rem;
    }
} 

/*-------------------- Footer Style --------------------*/
footer {
    padding-block: 6.25rem;
    background: var(--light-bg);

    & h4 {
        margin-bottom: 1.25rem;
    }
}

.footer-menu li {
    line-height: 2;
    
    & a {
        color: var(--text-color);
    }

    & a:hover {
        color: var(--link-hover);
    }
}

.address {
    & a {
        color: var(--text-color);
    }
    & a:hover {
        color: var(--link-hover);
    }
}

.social {
    & i {
        color: var(--text-color);
        font-size: 1.25rem;
        transition: all .3s ease-out;
    }

    & i:hover {
        color: var(--link-hover);
    }
}

.copyright {
    border-top: 1px solid var(--border);
    margin-top: 30px;
    padding-top: 50px;

    & p {
        font-size: .875rem;
    }
    & a {
        color: var(--text-color);
    }
    & a:hover {
        color: var(--link-hover);
    }
}

/*-------------------- About Page Style --------------------*/
.inner-hero-section {
    background: url(../images/banner-about-us.webp) no-repeat center;
    background-size: cover;
    padding-block: 150px;
    margin-top: 6.875rem;
}

.abt-sub-cont h4 {
    border-bottom: 2px solid var(--title-color);
    padding-bottom: 10px;
}

.dr-pic img {
    max-width: 175px;
}

ol.inner-list {
    list-style: decimal;
    padding-left: 20px;

    & li {
        margin-bottom: 10px;
        line-height: 1.8;
    }
    & li span {
        font-weight: 500;
        color: var(--title-color);
    }
}

.treatments h4 {
    border-bottom: 2px solid var(--title-color);
    padding-bottom: 10px;
}

.horizontal-line {
    border-top: 1px solid var(--border);
    opacity: 1;
    margin-block: 3.125rem;
}

/*-------------------- Contact Page Style --------------------*/
.form-group {
    margin-bottom: 1.5rem;
}
label {
    font-family: var(--text-ff);
    font-size: 14px !important;
}
textarea {
    resize: none;
}
.form-control::-webkit-input-placeholder {
    color: #ccc;
}
.form-control {
    font-family: var(--text-ff);
    border: 1px solid var(--border) !important;
    border-radius: 5px;
    outline:none !important;
    box-shadow: none !important;
    padding: .875rem;
    font-size: 14px;
}
.help-block li {
    color: red;
    font-size: 14px;
}
.btn-send {
    border-radius: 5px;
    padding: 10px 15px 12px 15px;
    background: transparent;
    border: 1px solid var(--border) !important;
    color: var(--text-color);
    font-size: 14px;
}
.btn-send:hover {
    background: transparent;
    color: var(--theme-red)
}

.contact-right {
    padding: 50px;
    background: var(--title-color);
    border-radius: 5px;

    h4, h6, p {
        color: var(--white);
    }

    p span {
        margin-inline: 10px;
    }

    a {
        color: var(--white);
    }
    a:hover {
        color: var(--link-hover);
    }
}

.map-area {
    margin-top: 50px;
    border-radius: 5px;
    overflow: hidden;
}