/*
Theme Name: Bootscore
Theme URI: https://bootscore.me/
Author: Bootscore
Author URI: https://bootscore.me
Description: Flexible Bootstrap WordPress starter-theme for developers with full WooCommerce support. <a href="https://bootscore.me/category/documentation/" target="_blank">Documentation</a>
Version: 6.0.4
Requires at least: 5.0
Tested up to: 6.7
Requires PHP: 7.4
License: MIT License
License URI: https://github.com/bootscore/bootscore/blob/main/LICENSE
Text Domain: bootscore
Tags: featured-images, threaded-comments, translation-ready

Use this theme to make something cool, have fun, and share what you've learned with others.

Bootscore is based on Underscores https://underscores.me/, (C) 2012-2024 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/* 
All style editing is done via /assets/scss/_bootscore-custom.scss
*/


/* * * * * * * * * * * * * * *
 * Fonts
 * * * * * * * * * * * * * * */
 @font-face {
    font-family: 'Juana-Alt-Light';
    src: url('./css/fonts/JuanaAltLight.woff2') format('woff2'),
        url('./css/fonts/JuanaAltLight.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


:root {
    --themeColor: #800000;
    --themeBgLight: #EFDFDE;
    --bodyFontColor: #242424;
    --bodyFontFamily: 'Roboto', sans-serif;
    --headingFontFamily: 'Juana-Alt-Light';
}

/* * * * * * * * * * * * * * *
 * General
 * * * * * * * * * * * * * * */
body {
    background: #FFF;
    color: var(--bodyFontColor);
    font-family: var(--bodyFontFamily);
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    letter-spacing: 0.02em;
}
a.navbar-brand {
    width: 303px;
    padding: 0;
}
nav#nav-main {
    padding: 20px 0;
}
.nav-link,
a.nav-link,
.customFont.customFontAldrich {
    font-family: var(--bodyFontFamily);
}
h1, h2, h3 {
    font-family: var(--headingFontFamily);
    font-weight: normal;
    letter-spacing: 0.01em;
}
b, strong {
    font-family: var(--bodyFontFamily);
    font-weight: bold;
}
.theme-bg-light {
    background-color: var(--themeBgLight);
}
.ml-auto {
    margin-left: auto;
}
figure {
    margin: 0;
}


/* * * * * * * * * * * * * * *
 * Header
 * * * * * * * * * * * * * * */
.site-header {
    position: fixed;
    width: 100%;
    height: 210px;
    left: 0;
    top: 0;
    z-index: 10;
}
header.site-header .navbar-nav .nav-link {
    color: #FFFFFF;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
ul#bootscore-navbar {
    margin-left: 35px;
}
ul#bootscore-navbar .nav-link {
    padding: 20px;
}
ul#top-right-navbar a {
    height: 64px;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    min-width: 130px;
    margin-left: 20px;
    line-height: 1;
    padding-bottom: 4px;
}
ul#top-right-navbar .link-shop a {
    border: 2px solid;
    color: var(--themeColor);
}
ul#top-right-navbar .link-join a {
    background: var(--themeColor);
    color: #FFFFFF;
}


/* * * * * * * * * * * * * * *
 * Footer
 * * * * * * * * * * * * * * */
 footer.main-footer {
    padding-block: 100px;
    position: relative;
    z-index: 5;
}
a.navbar-brand.footer-logo {
    width: 270px;
    display: block;
}
a.navbar-brand.footer-logo img {
    max-width: 100%;
}
footer .textarea-content br:first-child {
    display: none;
}
footer.main-footer h3 {
    font-size: 20px;
    font-family: var(--bodyFontFamily);
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--themeColor);
    font-weight: 300;
}
footer.main-footer a {
    color: inherit;
}
.col-disclaimer {
    font-size: 15px;
}


/* * * * * * * * * * * * * * *
 * Button styles
 * * * * * * * * * * * * * * */
a.btn-theme,
button.btn-theme {
    background: var(--themeColor);
    color: #FFFFFF;
    border: 0 none;
    text-decoration: none;
    user-select: none;
    padding: 10px 13px;
    display: inline-block;
    font-size: 18px;
    cursor: pointer;
    letter-spacing: 0.01em;
    border-radius: 10px;
    min-width: 280px;
    text-align: center;
    height: 47px;
}
a.btn-theme.btn-white {
    background: #FFFFFF;
    color: var(--themeColor);
}
a.btn-theme.btn-white-stroked {
    border: 1px solid #FFFFFF;
    background: transparent;
}

/* * * * * * * * * * * * * * *
 * Top banner
 * * * * * * * * * * * * * * */
section.hero-section {
    position: relative;
    height: 100dvh;
    min-height: 580px;
}
.hero-section-box {
    color: #fff;
    padding-top: 210px;
    position: relative;
    height: 100%;
    padding-bottom: 100px;
}
.hero-section h1 {
    font-size: 84px;
    margin-bottom: 0;
    line-height: 1;
}
.hero-banner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}
.hero-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
p.hero-sub-title {
    font-size: 20px;
    letter-spacing: 0.08em;
    font-family: var(--bodyFontFamily);
}
.hero-description {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 100;
}
.hero-section-box a.btn-theme {
    padding-inline: 32px;
}


/* * * * * * * * * * * * * * *
 * Welcome section
 * * * * * * * * * * * * * * */
.site-home-page .welcome-content-block {
    padding-block: 100px;
}
.site-home-page .welcome-content-block h2 {
    font-size: 36px;
    /* color: var(--themeColor); */
}
.our-approach-section h5 + .textarea-content br:first-child,
.welcome-content-block .content.textarea-content br:first-child {
    display: none;
}
.welcome-content-block .content {
    font-size: 21px;
}


/* * * * * * * * * * * * * * *
 * Image content section
 * * * * * * * * * * * * * * */
section.image-content-section {
    padding-block: 140px;
}
h4.section-sub-title {
    font-size: 22px;
    font-weight: 200;
    font-weight: 250;
    text-transform: uppercase;
    color: var(--themeColor);
    margin-bottom: 5px;
}
.our-approach-section .col-xl-7 {
    padding-right: 40px;
}
.why-choose-us-section .col-xl-7 {
    padding-left: 40px;
}
section.image-content-section h5 {
    color: var(--themeColor);
    font-family: var(--headingFontFamily);
    font-size: 24px;
}
section.image-content-section h2 {
    color: var(--themeColor);
    font-size: 40px;
    margin-bottom: 15px;
}
.why-choose-faq:nth-child(n+3) {
    margin-top: 40px;
}
.why-choose-faqs-list {
    margin-top: 25px;
}
.why-choose-faq .content {
    max-width: 330px;
    font-size: 16px;
}
.our-approach-section h2 {
    max-width: 650px;
}
.our-approach-section .content {
    max-width: 480px;
}
.our-approach-section .btn-block {
    margin-top: 30px;
}
.our-approach-section h5 {
    margin-top: 35px;
}

section.booking-section h2 {
    color: var(--themeColor);
    font-family: var(--headingFontFamily);
    font-size: 39px;
    margin: 20px auto;
    max-width: 800px;
}
section.booking-section .container {
    padding-block: 100px;
    border-bottom: 1px solid var(--themeColor);
}


/* * * * * * * * * * * * * * *
 * Additional UX
 * * * * * * * * * * * * * * */
::selection {
    background-color: rgb(233, 108, 108, 0.7); /* Background color for selected text */
    color: white; /* Text color for selected text */
}
a, button {
   user-select: none;
   text-decoration: none;
}
a:focus, button:focus {
    outline: 0 none;
    box-shadow: none;
}
div#page {
    overflow-x: hidden;
    display: block;
    height: auto;
}


/* * * * * * * * * * * * * * *
 * Animations - Header sticky
 * * * * * * * * * * * * * * */
nav#nav-main,
a.navbar-brand,
ul#bootscore-navbar {
    transition: 0.5s;
}
.site-header {
    transition: transform 0.5s, background 0.3s;
    background: rgba(33,33,33,0);
}
.site-header.sticky-bar {
    background: rgba(33,33,33,1);
    height: 125px;
}
.site-header.sticky-bar nav#nav-main {
    padding: 10px 0;
}
.site-header.sticky-bar a.navbar-brand {
    width: 215px;
    position: relative;
    top: -4px;
}
.site-header.sticky-bar ul#bootscore-navbar {
    margin-left: 20px;
}
.site-header.sticky-bar .top-bar:after {
    margin-block: 10px 15px;
    opacity: 0.33;
}
.footer-menu a {
    display: table;
    margin-bottom: 3px;
}

@media (hover: hover) {
/* * * * * * * * * * * * * * *
 * Mouse over - With underline
 * * * * * * * * * * * * * * */
ul#bootscore-navbar a,
.menu-link,
.top-bar a,
.footer-menu a {
    position: relative;
}
ul#bootscore-navbar a:after,
.menu-link:after,
.top-bar a:after,
.footer-menu a:after {
    content: '';
    display: block;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transition: 0.24s;
}
ul#bootscore-navbar a:hover:after,
.menu-link:hover:after,
.top-bar a:hover:after,
.footer-menu a:hover:after {
    transform: scaleX(1);
}
.footer-menu a:after {
    transform-origin: bottom left;
    margin-top: -2px;
    background: currentColor;
    height: 1px;
}
.top-bar a:after {
    transform-origin: bottom left;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 32px;
    right: 0;
}


/* * * * * * * * * * * * * * *
 * Mouse over - Buttons
 * * * * * * * * * * * * * * */
a.btn-theme, button.btn-theme, ul#top-right-navbar a {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: 0.24s;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}
a.btn-theme:before, button.btn-theme:before, ul#top-right-navbar a:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background: rgba(0,0,0,0.1);
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    transition: 0.24s;
    z-index: -1;
}
a.btn-theme:hover:before, button.btn-theme:hover:before, ul#top-right-navbar a:hover:before {
    transform: translateY(0%);
}
a.btn-theme:hover, button.btn-theme:hover, ul#top-right-navbar a:hover {
    box-shadow: 0 3px 0 rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}
a.btn-theme:active, button.btn-theme:active, ul#top-right-navbar a:active {
    box-shadow: 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(1px);
    transition: 0s;
}
ul#top-right-navbar .link-shop a:hover {
    box-shadow: 0 3px 0 rgb(208 46 46);
}
ul#top-right-navbar .link-shop a:before {
    background: rgba(255,255,255,0.2);
}
a.btn-theme span {
    position: relative;
    z-index: 1;
}
.contact-content-section a,
.site-home-page .welcome-content-block a {
    transition: 0.24s;
}
.contact-content-section .row a:hover {
    color: var(--themeColor);
}
.site-home-page .welcome-content-block a:hover {
    color: #ff9090;
}
ul.social-menu li a.nav-link:hover {
    background: #212121;
}
a.btn-theme.btn-black:before {
    background: rgba(255, 255, 255, 0.1);
}
a.btn-theme.btn-black:hover {
    box-shadow: 0 3px 0 rgb(255 73 73);
}
a.btn-theme.btn-white:hover {
    color: #fff;
}
a.btn-theme.btn-white:before {
    background: var(--themeColor);
}
a.btn-theme.btn-main:hover {
    color: var(--themeColor);
    box-shadow: 0 3px 0 var(--themeColor);
    border: 1px solid;
}
a.btn-theme.btn-main:before {
    background: #fff;
}
}

/* * * * * * * * * * * * * * *
 * Animations - Intro
 * * * * * * * * * * * * * * */
@media only screen and (min-width: 993px) {
    .hero-section h1 {
        animation: slideIn 0.5s;
    }
    .hero-section .hero-description,
    .hero-sub-title {
        animation: slideIn 0.75s;
    }
    .hero-section .btn-block,
    .hero-section .banner-location-description {
        animation: slideIn 1s;
    }
    .contact-heading h1 {
        animation: slideDown 0.6s;
    }
    .contact-heading p,
    .home .site-header {
        animation: slideDown 0.75s;
    }
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
}
@keyframes slideDown {
    0%, 25% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}


/* * * * * * * * * * * * * * *
 * Disable AOS in Small Screen
 * * * * * * * * * * * * * * */
@media only screen and (max-width: 992px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}


/* * * * * * * * * * * * * * *
 * Mobile menu icon
 * * * * * * * * * * * * * * */
.menu-toggle {
    display: inline-block;
    background: none;
    border: 0;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    padding: 8px;
}
.menu-toggle .icon-menu {
    display: block;
    position: relative;
    width: 30px;
    height: 26px;
    font-size: 1em;
}
.menu-toggle span i {
    background: #fff;
    border-radius: 2px;
    display: block;
    height: 2px;
    width: 100%;
    position: absolute;
    right: 0;
    transition: all .4s;
}
.menu-toggle span i:first-child {
    top: 0;
}
.menu-toggle span i:first-child+i {
    top: 10px;
}
.menu-toggle span i:first-child+i+i {
    top: 20px;
}
.menu-toggle.active,
.menu-toggle.active .icon-menu {
    color: #fff1e5;
}
.menu-toggle.active:hover {
    color: var(--thColor);
}
.menu-toggle.active span i:first-child {
    opacity: 1;
    transform: rotate(45deg) scale(0.66);
    top: 8px;
    width: 37px;
}
.menu-toggle.active span i:first-child+i {
    opacity: 0;
}
.menu-toggle.active span i:first-child+i+i {
    opacity: 1;
    transform: rotate(-45deg) scale(0.66);
    top: 8px;
}


/* * * * * * * * * * * * * * *
 * New Changes for clinic
 * * * * * * * * * * * * * * */
.top-bar a {
    margin-left: 50px;
    display: inline-flex;
    font-size: 17px;
    color: #fff;
}
.top-bar a:before {
    content: '';
    margin-right: 12px;
    width: 20px;
    height: 20px;
    background-image: url('./img/icon-mail.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
    position: relative;
    top: 2px;
}
.top-bar .contact-number:before {
    background-image: url('./img/icon-phone.svg');
}
.top-bar:after {
    content: '';
    display: block;
    width: 100%;
    border-bottom: 1px solid #fff;
    margin-block: 20px 25px;
    transition: 0.5s;
}
.hero-banner:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 46%,rgba(0,0,0,0) 100%);
}
a.menu-link {
    font-size: 18px;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    padding: 5px;
    margin: 5px;
    font-weight: 300;
    font-weight: 350;
}
.menu-block .btn-white {
    margin-left: 20px;
}
.menu-block .btn-white-stroked {
    margin-left: 10px;
    min-width: 220px;
}


@media (min-width: 1400px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: 1360px;
    }
}

/* * * * * * * * * * * * * * *
 * Styles for Small Screen
 * * * * * * * * * * * * * * */
 @media only screen and (max-width: 1400px) {
    body {
        font-size: 14px;
    }
    .top-bar a, .why-choose-faq .content {
        font-size: inherit;
    }
    a.navbar-brand {
        width: 220px;
    }
    a.menu-link {
        font-size: 15px;
        margin: 3px;
    }
    a.btn-theme, button.btn-theme {
        font-size: 15px;
        height: auto;
        min-width: 0;
        padding-inline: 25px;
    }
    .menu-block .btn-white-stroked {
        min-width: 0;
        margin-left: 5px;
    }
    .menu-block .btn-white {
        margin-left: 10px;
    }
    .hero-section h1 {
        font-size: 64px;
    }
    .hero-description {
        font-size: 28px;
    }
    .site-home-page .welcome-content-block h2 {
        font-size: 26px;
    }
    .welcome-content-block .content,
    h4.section-sub-title, 
    footer.main-footer h3 {
        font-size: 16px;
    }
    
    section.image-content-section h2 {
        font-size: 28px;
    }
    
    .why-choose-us-section .col-xl-7 {
        padding-left: 20px;
    }
    section.image-content-section h5 {
        font-size: 18px;
    }
    .why-choose-faq:nth-child(n+3) {
        margin-top: 25px;
    }
    section.booking-section h2 {
        font-size: 30px;
        max-width: 600px;
    }
    a.navbar-brand.footer-logo {
        width: 200px;
    }
    .col-disclaimer {
        font-size: 11px;
    }
 }

/* * * * * * * * * * * * * * *
 * Styles for Small Screen
 * * * * * * * * * * * * * * */
 @media only screen and (max-width: 992px) {
    body {
        font-size: 14px;
    }
    .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        padding-inline: 20px;
    }
    .site-header {
        height: 127px;
    }
    header .container {
        padding-inline: 15px;
    }
    button.menu-toggle {
        margin-right: -5px;
    }
    .col-left ul#bootscore-navbar {
        display: none;
    }
    a.navbar-brand {
        width: 167px !important;
        width: 167.25px !important;
    }
    header.site-header .navbar-nav .nav-link {
        color: var(--themeColor);
    }
    .offcanvas-body ul#top-right-navbar {
        flex-direction: row;
    }
    .offcanvas-body ul#top-right-navbar a {
        margin-top: 20px;
        margin-bottom: 0;
    }
    .offcanvas-body ul#bootscore-navbar {
        margin-left: 0 !important;
    }
    a.nav-link.nav-st-home {
        padding: 20px;
        color: var(--themeColor);
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 0.2em;
    }
    body[style*="overflow: hidden"] .site-header,
    body[style*="overflow: hidden"] .site-header.sticky-bar {
        height: 100%;
    }
    nav#nav-main {
        padding: 15px 0;
    }
    .header-actions ul#top-right-navbar {
        flex-direction: row;
        margin-right: 5px;
    }
    .header-actions ul#top-right-navbar a.nav-link {
        margin-left: 10px;
        min-width: 90px;
        font-size: 16px;
        height: 54px;
    }
    div#offcanvas-navbar {
        background: #212121;
    }
    div#offcanvas-navbar .btn-close {
        opacity: 1;
        filter: invert(1);
        --bs-btn-close-color: #ff4949;
    }
    a.navbar-brand.footer-logo {
        width: 200px !important;
        margin: -20px auto 0;
    }
    .main-footer .d-md-flex > div {
        margin-bottom: 40px;
    }
    footer.main-footer h3 {
        font-size: 17px;
        margin-bottom: 14px;
    }
    .main-footer .d-md-flex > div.opening-hours {
        margin-bottom: 0;
    }
    h4.section-sub-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    section.hero-section {
        min-height: 100dvh;
    }
    .hero-section-box {
        padding-top: 150px;
    }
    a.btn-theme, button.btn-theme {
        font-size: 14px;
        letter-spacing: 0.05em;
    }
    section.membership-features-section {
        padding-block: 20px;
    }
    .membership-features-section h3 {
        font-size: 14px;
        margin: 25px auto 50px;
    }
    p.hero-sub-title {
        font-size: 18px;
    }
    .hero-description {
        font-size: 16px;
    }
    .site-home-page .welcome-content-block,
    footer.main-footer,
    section.personal-content-section {
        padding-block: 70px;
    }
    .personal-content-block .content {
        padding-left: 0;
    }
    .site-home-page .hero-section h1 {
        font-size: 30px;
    }
    .site-home-page .hero-section .hero-description {
        font-size: 17px;
    }
    .site-home-page .welcome-content-block h2 br,
    .site-home-page .hero-section .hero-description br {
        display: none;
    }
    .top-bar a {
        margin: 0;
        font-size: 13px;
    }
    .top-bar a:before {
        width: 15px;
        height: 15px;
        margin-right: 5px;
    }
    .top-bar-links {
        width: 100%;
        justify-content: space-between;
    }
    .top-bar:after {
        opacity: 0.5;
        margin-block: 15px;
    }

    button.menu-toggle {
        border: 1px solid #fff;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .menu-toggle span i {
        height: 1px;
    }
    .menu-toggle span i:first-child+i {
        top: 6px;
        width: 17px;
    }
    .menu-toggle span i:first-child+i+i {
        top: 12px;
    }
    .menu-toggle .icon-menu {
        height: 14px;
        width: 22px;
    }
    .menu-toggle span i:first-child {
        width: 13px;
    }
    a.menu-link {
        display: block;
        border-bottom: 1px solid #444;
        margin: 0 -15px;
        padding: 15px;
    }
    .site-home-page .welcome-content-block h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .textarea-content br {
        display: none;
    }
    body,
    .welcome-content-block .content, h4.section-sub-title, footer.main-footer h3 {
        font-size: 15px;
    }
    section.booking-section .container,
    section.image-content-section {
        padding-block: 70px;
    }
    
    .why-choose-us-section .col-xl-7 {
        padding-left: 15px;
    }
    
    section.our-approach-section .row {
        flex-direction: column-reverse;
    }
    
    section.image-content-section figure {
        margin-bottom: 30px;
    }
    .why-choose-faq:nth-child(2) {
        margin-top: 25px;
    }
    .site-header.sticky-bar {
        height: 110px;
    }
    footer.main-footer {
        font-size: 14px;
        padding-bottom: 20px;
    }
    footer .address-content.textarea-content br {
        display: block;
    }
    footer .address-content.textarea-content br:first-child {
        display: none;
    }
}
.section-content-row figure {
    border-radius: 20px;
    overflow: hidden;
}