/*
Theme Name: BlankSlate
Theme URI: https://opencollective.com/blankslate
Author: Bryan Hadaway
Author URI: https://opencollective.com/blankslate#section-contributors
Description: Donate: https://opencollective.com/blankslate. Learn: https://blankslate.me/. BlankSlate is the definitive WordPress boilerplate starter theme. I've carefully constructed the most clean and minimalist theme possible for designers and developers to use as a base to build websites for clients or to build completely custom themes from scratch. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, standardized and as white label as possible, and most importantly, the CSS is reset for cross-browser-compatability, with no intrusive visual CSS styles added whatsoever. A perfect skeleton theme. For support and suggestions, go to: https://github.com/bhadaway/blankslate/issues. Thank you.
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 2024.2
Requires at least: 5.2
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: blankslate

BlankSlate WordPress Theme 2011-2024
BlankSlate is distributed under the terms of the GNU GPL
*/

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    /* font-family */
    --primary-font-family: "Schibsted Grotesk", sans-serif;
    --secondary-font-family: "Schibsted Grotesk", sans-serif;
    /* font-size */
    --font-size-h1: 62px;
    --font-size-h2: 40px;
    --font-size-h3: 34px;
    --font-size-h4: 28px;
    --font-size-h5: 24px;
    --font-size-h6: 20px;
    --font-size-body-text: 18px;
    --font-size-asset: 16px;
    /* color  */
    --primary-color: #111111;
    --secondary-color: #004AAD;
    --asset-color: #ffffff;
    --background-color: #f2f3fd;

}


html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

html {
    scroll-behavior: smooth
}

a[href^="tel"] {
    color: inherit;
    text-decoration: none
}

a {
    text-decoration: none;
    transition: all 0.5s;
}

button {
    outline: 0
}

ol,
ul {
    font-size: var(--font-size-body-text);
    line-height: 26px;
    margin-left: 22px;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent
}


img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.dflex {
    display: flex;
    flex-wrap: wrap;
}

:focus-visible {
    outline: none;
}

::placeholder {
    opacity: 1;
    color: var(--primary-color);
}

body {
    font-family: var(--secondary-font-family);
}

h1 {
    font-family: var(--primary-font-family);
    font-weight: 700;
    font-size: var(--font-size-h1);
    line-height: 1.2em;
    text-transform: normal;
}

h2 {
    font-family: var(--primary-font-family);
    font-weight: 500;
    font-size: var(--font-size-h2);
    line-height: 1.3em;
    text-transform: normal;
}

h3 {
    font-family: var(--primary-font-family);
    font-weight: 500;
    font-size: var(--font-size-h3);
    line-height: 1.3em;
}

h4 {
    font-family: var(--primary-font-family);
    font-weight: 500;
    font-size: var(--font-size-h4);
    line-height: 1.3em;
}

h5 {
    font-family: var(--primary-font-family);
    font-weight: 500;
    font-size: var(--font-size-h5);
    line-height: 1.3em;
}

h6 {
    font-family: var(--primary-font-family);
    font-weight: 400;
    font-size: var(--font-size-h6);
    line-height: 1.3em;
}

p {
    font-family: var(--secondary-font-family);
    font-weight: 400;
    font-size: var(--font-size-body-text);
    line-height: 1.3em;
}

a {
    font-family: var(--font-size-asset);
    font-family: var(--secondary-font-family);
    font-weight: 400;
    line-height: 1.3em;
}

p a {
    color: var(--secondary-color);
    text-decoration: none;
}

strong,
b {
    font-weight: 600;
}

.btn {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn:after {
    content: "";
    width: calc(100% + 10px);
    height: 100%;
    border-radius: 50px;
    position: absolute;
    left: -5px;
    z-index: -1;
    transition: all 0.5s;
    transform: translateX(-100%);
}

.btn:hover:after {
    transform: translateX(0);
}

/* Zoom Effect Css */
.zoom_area {
    overflow: hidden;
    cursor: zoom-in;
}

.zoom_area.zoomed .zoom_area_img {
    cursor: zoom-out;
}

/* End Zoom Effect Css */

/* header css start  */
#top__bar {
    padding: 10px 60px;
    text-align: center;
    background: var(--secondary-color);
}

#top__bar .topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

#top__bar a {
    color: var(--asset-color);
    font-weight: 400;
    letter-spacing: 1px;
    font-family: var(--primary-font-family);
}

#top__bar .topbar__buttons {
    display: flex;
    gap: 10px;
}

#top__bar a.header__btn {
    display: flex;
    min-width: max-content !important;
    border: 2px solid #fff;
    padding: 5px 5px 5px 20px;
    border-radius: 50px;
    align-items: center;
    gap: 10px;
}

#top__bar a.header__btn .phone__icon {
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

#top__bar a.header__btn .phone__icon svg {
    width: 20px;
}

#top__bar a.header__btn.btn:after {
    background-color: var(--asset-color);
}

#top__bar a.header__btn.btn:hover {
    color: var(--secondary-color);
}

#header__outer {
    padding: 30px 60px;
    background: var(--background-color);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    z-index: 1111;
    position: relative;
}

#header__outer .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header__outer .header__inner .header__col {
    display: flex;
}

#header__outer img.header__logo {
    max-width: 400px;
}

#header__outer ul.header__menu {
    display: flex;
    flex-wrap: wrap;
    /* gap: 0 24px; */
    align-items: center;
    position: relative;
    justify-content: end;
    list-style: none;
}

ul.header__menu li {
    padding-bottom: 5px;
}

#header__outer ul.header__menu a {
    color: var(--primary-color);
    font-family: var(--primary-font-family);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 17px;
    padding: 10px 12px;
    border-radius: 6px;
}

#header__outer ul.header__menu li:hover a {
    color: var(--secondary-color);
    text-shadow: 0 0 var(--secondary-color);
    background-color: var(--secondary-color);
    color: var(--asset-color);
}

#header__outer ul.header__menu li:hover a svg {
    filter: brightness(0) saturate(100%) invert(100%) sepia(8%) saturate(31%) hue-rotate(335deg) brightness(108%) contrast(107%);
}

#header__outer ul.header__menu span.dropdown-icon {
    display: flex;
}

#header__outer ul.header__menu a svg {
    width: 20px;
}

#header__outer ul.dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #004aad;
    border-radius: 20px;
    padding: 12px 0;
    top: 100%;
    min-width: max-content;
    box-shadow: 0px 0px 15px #00000033;
}

#header__outer ul.dropdown li {
    padding: 5px 20px;
}

#header__outer ul.dropdown li a {
    color: var(--asset-color) !important;
    padding: 0;
    background: none !important;
}

#header__outer ul.dropdown li:hover {
    background-color: var(--asset-color);
}

#header__outer ul.dropdown li:hover a {
    color: var(--secondary-color) !important;
}

#header__outer li:hover>ul.dropdown {
    display: block;
}

#header__outer .menubar__icon {
    display: none;
    width: 24px;
}

/* header css end  */

/* popup css start  */
#header__popup {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1111;
    background: #00000078;
    display: flex;
    justify-content: end;
    overflow: auto;
}

.popup__wrapper {
    width: 100%;
    max-width: 440px;
    background: #fff;
    padding: 40px 34px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    min-height: 100vh;
    height: max-content;
}

#header__popup ul.header__menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0 16px;
    align-items: flex-start;
    position: relative;
    justify-content: end;
    flex-direction: column;
    margin: 0;
}

#header__popup ul.header__menu li {
    position: relative;
}

#header__popup ul.header__menu a {
    padding: 6px 0;
    background: none !important;
    color: var(--secondary-color) !important;
}

#header__popup ul.header__menu a svg {
    filter: none !important;
}

#header__popup ul.dropdown {
    position: relative;
    top: 0;
    z-index: 1;
}

#header__popup a.header__btn {
    display: flex;
    min-width: max-content !important;
    border: 2px solid var(--secondary-color);
    padding: 5px 5px 5px 20px;
    border-radius: 50px;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: #000;
}

#header__popup a.header__btn .phone__icon {
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

#header__popup a.header__btn .phone__icon svg {
    width: 20px;
    filter: brightness(0) saturate(100%) invert(99%) sepia(61%) saturate(2%) hue-rotate(132deg) brightness(111%) contrast(100%);
}

#header__popup a.header__btn.btn:after {
    background-color: var(--secondary-color);
}

#header__popup a.header__btn.btn:hover {
    color: var(--asset-color);
}

#header__popup .close__icon {
    width: 16px;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* popup css end  */

/* footer css start  */

#footer .footer__main {
    padding: 60px 60px 40px;
    background: var(--secondary-color);
}

#footer .footer__outer {
    display: flex;
    justify-content: space-between;
}

#footer .footer__col {
    max-width: 260px;
}

#footer .footer__heading {
    color: var(--asset-color);
    margin-bottom: 16px;
}

#footer ul.footer__links {
    margin-left: 0;
}

#footer ul.footer__links li {
    margin-bottom: 12px;
    display: flex;
    gap: 3px;
    align-items: center;
}

#footer ul.footer__links a {
    color: var(--asset-color);
    font-family: var(--primary-font-family);
    font-weight: 400;
    display: flex;
    align-items: self-start;
    gap: 10px;
}

#footer ul.footer__links a svg {
    width: 16px;
    color: #fff;
    fill: #fff;
    min-width: 16px;
    margin-top: 2px;
}

#footer .social__icon {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

#footer .social__icon a {
    width: 30px;
}

.copy__right {
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 60px;
    border-top: 1px solid #ffffff65;
}

.copy__right p {
    font-weight: 300;
    color: var(--asset-color);
}

/* footer css end  */


/* hero section css start  */
#hero__section {
    min-height: 700px;
    background-position: top;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
    z-index: 1;
}

#hero__section:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.7;
    pointer-events: none;
    z-index: -1;
}

.hero__main h1 {
    max-width: 680px;
    margin: 0 auto;
}

#hero__section h5 {
    margin-top: 20px;
    font-weight: 400;
}

#hero__section a.hero__btn {
    display: flex;
    border: 2px solid #fff;
    padding: 12px 28px;
    border-radius: 50px;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 30px auto 0;
    color: var(--asset-color);
    font-size: var(--font-size-body-text);
    font-weight: 300;
    line-height: 26px;
    letter-spacing: 1px;
}

#hero__section a.hero__btn.btn:after {
    background-color: var(--asset-color);
}

#hero__section a.hero__btn.btn:hover {
    color: var(--secondary-color);
}

/* hero section css end  */

/* nitrous Section css Start  */
#nitrous__section {
    padding: 80px 60px;
}

#nitrous__section .nitrous__main {
    gap: 60px;
    align-items: center;
}

#nitrous__section .nitrous__image {
    width: calc(50% - 30px);
}

#nitrous__section .nitrous__image img {
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#nitrous__section .nitrous__content {
    width: calc(50% - 30px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* nitrous Section css End  */

/* CDCP Section css Start  */
#cdcp__section {
    padding: 80px 60px;
    background-color: var(--background-color);
}

#cdcp__section .cdcp__main {
    gap: 60px;
    align-items: center;
}

#cdcp__section .cdcp__image {
    width: calc(50% - 30px);
}

#cdcp__section .cdcp__image img {
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#cdcp__section .cdcp__content {
    width: calc(50% - 30px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* CDCP Section css End  */

/* fill btn css start  */
.fill__btn {
    display: flex;
    border: 2px solid var(--secondary-color);
    padding: 10px 28px;
    border-radius: 50px;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: var(--asset-color);
    font-size: var(--font-size-body-text);
    font-weight: 300;
    line-height: 26px;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 10px;
    text-transform: normal;
}

.fill__btn:after {
    content: "";
    width: calc(100% + 10px);
    height: 100%;
    border-radius: 50px;
    position: absolute;
    left: -5px;
    z-index: -1;
    transition: all 0.5s;
    transform: translateX(00%);
    background-color: var(--secondary-color);
    pointer-events: none;
}

.fill__btn:hover {
    color: var(--secondary-color);
}

.fill__btn:hover:after {
    transform: translateX(-100%);
}

/* fill btn css end  */

.border__btn {
    display: flex;
    border: 2px solid var(--asset-color);
    padding: 10px 28px;
    border-radius: 50px;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: var(--asset-color);
    font-size: var(--font-size-body-text);
    font-weight: 300;
    line-height: 26px;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 10px;
    text-transform: normal;
}

.border__btn:after {
    content: "";
    width: calc(100% + 10px);
    height: 100%;
    border-radius: 50px;
    position: absolute;
    left: -5px;
    z-index: -1;
    transition: all 0.5s;
    transform: translateX(00%);
    background-color: var(--asset-color);
    transform: translateX(-100%);
    pointer-events: none;
}

.border__btn:hover {
    color: var(--secondary-color);
}

.border__btn:hover:after {
    transform: translateX(00%);
}

/* contact section css start  */
#contact__section {
    padding: 80px 60px;
}

#contact__section .contact__main {
    gap: 30px 24px;
}

#contact__section .contact__info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

#contact__section .contact__info .contact__text {
    max-width: 1000px;
    line-height: 30px;
}

#contact__section span {
    display: block;
}

#contact__section .contact__box {
    width: calc(25% - 18px);
    padding: 30px 16px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    background: #f2f3fd;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: start;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #000;
}

#contact__section .contact__icon {
    width: 58px;
    height: 58px;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.15));
}

#contact__section .contact__icon img {
    height: 32px;
    width: 40px;
    object-fit: contain !important;
    filter: brightness(0) saturate(100%) invert(14%) sepia(81%) saturate(3276%) hue-rotate(206deg) brightness(105%) contrast(101%);
}

/* contact section css end  */


/* Map section css start  */
#map__section.contact__map {
    width: 100% !important;
}

#map__section.contact__map p {
    display: flex;
}

#map__section iframe {
    width: 100%;
}

/* Map section css end  */

/* Book Section css start  */
#book__section {
    padding: 80px 60px;
    color: var(--asset-color);
}

/* #book__section.home__book {
    background: var(--background-color);
} */

#book__section .book__main {
    padding: 60px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 400px;
}

#book__section .book__main:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

#book__section .book__content {
    max-width: 900px;
    color: #fff;
}

#book__section .book__main .book__content p {
    color: #fff !important;
}

#book__section .book__main .book__content a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* Service Section Start  */
#service__section {
    padding: 60px;
    background-color: var(--background-color);
}

/* #service__section.home__service {
    background-color: transparent;
} */

#service__section .service__main {
    gap: 60px;
    justify-content: center;
}

#service__section .service__col {
    width: calc(50% - 30px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#service__section .service__img {
    width: calc(50% - 30px);
    min-height: 100%;
}


.service__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#service__section .service__list {
    gap: 60px;
    margin-top: 60px;
}

#service__section .service__list:nth-child(odd) {
    flex-direction: row-reverse;
}

#service__section .list__content {
    width: calc(50% - 30px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 40px 0;
}

#service__section .list__content .list__ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

#service__section .list__content .list__ul li {
    font-size: var(--font-size-body-text);
    display: flex;
    gap: 10px;
}

#service__section .list__content .list__ul li a {
    /* color: #000; */
    color: var(--secondary-color);
}

#service__section .list__content .list__ul svg {
    width: 18px;
    min-width: 18px;
    vertical-align: middle;
    fill: #004AAD;
}

/* Service Section End  */

/* Review Section css Start  */
#review__section {
    padding: 80px 60px;
}

#review__section .review__main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#review__section .review__slider {
    margin-top: 40px;
    width: 100%;
}

#review__section .review__subheading {
    margin-bottom: 8px;
    margin-top: 4px;
}

#review__section .total__review {
    display: flex;
    align-items: center;
    gap: 16px;
}

#review__section .google__icon {
    width: 36px;
}

#review__section .star__rating {
    display: inline-flex;
    font-size: 24px;
    color: #ccc;
    line-height: 20px;
}

#review__section .star__rating .selected {
    color: #ffca08;
}

#review__section .review__slider .swiper-slide {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 20px;
    background: var(--background-color);
}

#review__section .review__slider .slide__img {
    width: 60px;
}

#review__section .review__slider .slide__content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: calc(100% - 80px);
}

#review__section .review__slider span.review__date {
    font-weight: 300;
    color: #828282;
    font-size: 15px;
}

#review__section .review__slider .review__text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#review__section .review__slider a.review__read {
    text-decoration: underline;
    font-weight: 500;
    text-underline-offset: 3px;
}

#review__section .review__slider .swiper-pagination {
    position: relative;
    margin-top: 40px;
}

#review__section .review__slider .swiper-pagination span.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    transition: all 0.5s;
}

/* Review Section css End  */

/* member section css start  */
#member__section {
    padding: 80px 60px;
    background-color: var(--background-color);
}

#member__section .member__heading {
    width: 30%;
    padding-right: 60px;
    display: flex;
    align-items: center;
}

#member__section .member__heading h2 {
    max-width: 280px;
}

#member__section .member__slider {
    width: 70%;
}

#member__section .member__slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

#member__section .member__slider .swiper-slide {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 130px;
}

#member__section .member__slider .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* member section css end  */


/* appointment Section css start  */
#appointment__section {
    padding: 80px 60px;
    color: var(--asset-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: top center;
    background-repeat: no-repeat !important;
    min-height: 400px;
    background: var(--secondary-color);
}

#appointment__section .appointment__main {
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#appointment__section:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

#appointment__section .appointment__content {
    max-width: 900px;
    color: #fff;
}

/* #appointment__section .appointment__content a {
    color: unset;
    text-decoration: underline;
    text-underline-offset: 3px;
} */

/* appointment Section css end  */


/* Banner css start  */
#banner__section {
    background: var(--secondary-color);
    padding: 60px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

#banner__section:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.7;
    z-index: -1;
    pointer-events: none;
}

#banner__section .banner__heading {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

#banner__section .breadcrumb svg {
    width: 20px;
    height: 20px;
}

#banner__section .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: var(--font-size-body-text);
    color: #fff;
    font-weight: 400;
    line-height: 18px;
}

#banner__section .breadcrumb a {
    color: unset;
}

/* Banner css start  */


/* review page css start  */
#client__review {
    padding: 60px;
}

#client__review .testimonial__main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#client__review .testimonial__main .testimonial__content {
    font-size: var(--font-size-body-text);
    text-align: center;
    max-width: 800px;
    line-height: 28px;
    margin-bottom: 10px;
}

#client__review .testimonial__col {
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

#client__review .review__box {
    width: calc(33.33% - 20px);
    box-shadow: 0px 4px 40px 0px #0000000F;
    border: 1px solid #0e384c1a;
    border-radius: 30px;
    padding: 20px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--background-color);
}

#client__review .testimonial__col svg {
    width: 62px;
    display: flex;
}

#client__review .testimonial__col .review__content {
    font-size: var(--font-size-body-text);
    line-height: 24px;
    font-weight: 300;
    color: #404040;
}

#client__review .testimonial__col .review__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

#client__review .testimonial__col .review__inner img.review__img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
}

/* review page css end  */


/* Service page css start  */

#service__section.core__values {
    background-color: transparent;
}

#service__section.core__values .service__col {
    width: 100%;
    align-items: center;
}

#service__section.core__values .service__heading {
    text-align: center;
}

#service__section.core__values .service__content {
    text-align: center;
    max-width: 600px;
}

#nitrous__section.service__nitrous {
    background: var(--background-color);
}

#pricing__section {
    padding: 60px;
}

#pricing__section .pricing__outer {
    justify-content: center;
    gap: 24px;
}

#pricing__section .pricing__heading {
    max-width: 550px;
    margin: 0 auto 40px;
    text-align: center;
}

#pricing__section .pricing__box {
    width: calc(25% - 18px);
    box-shadow: 0px 4px 40px 0px #0000000F;
    border: 1px solid #0e384c1a;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    background: var(--background-color);
}

#pricing__section .price {
    color: var(--secondary-color);
    font-weight: 600;
}

#pricing__section .price__title {
    font-weight: 500;
    margin: 5px 0;
}

#pricing__section .price__content {
    font-size: var(--font-size-asset);
}

#appointment__section.monthly__payment {
    background-position: center;
}

#book__yours {
    padding: 60px;
    background: var(--background-color);
}

#book__yours .book__main {
    gap: 60px;
    align-items: center;
}

#book__yours .book__col {
    width: calc(50% - 30px);
}

#book__yours .book__col img {
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    width: 100%;
}

#book__yours .book__col .book__acontent p {
    margin-bottom: 16px;
}

#book__yours .book__col .book-yours__btn {
    margin-top: 24px;
}

#form-map__section {
    padding: 0 60px 60px;
}

#form-map__section .form-map__main {
    gap: 60px;
    align-items: center;
}

#form-map__section .map__column {
    width: calc(50% - 30px);
}

#form-map__section .form__column {
    width: calc(50% - 30px);
}

#form-map__section .map__column iframe {
    border-radius: 30px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    height: 600px;
    width: 100%;
}

#form-map__section .form__column .form__main__heading {
    margin-bottom: 30px;
}

#form-map__section .form__column .contact__form__main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

#form-map__section .form__column .contact__form__main br {
    display: none;
}

#form-map__section .form__column .contact__form__main span.wpcf7-form-control-wrap {
    width: 100%;
    display: flex;
}

#form-map__section .form__column .contact__form__main .form__row {
    width: 100%;
}

#form-map__section .form__column .contact__form__main .form__row p {
    display: flex;
    gap: 30px;
    width: 100%;
}

#form-map__section .form__column .contact__form__main .form__row label {
    width: calc(50% - 15px);
}

#form-map__section .form__column .contact__form__main input {
    border: none;
    border-bottom: 1px solid #9a9a9a;
    border-radius: 0;
    width: 100%;
    padding: 5px 0 10px;
    font-size: 16px;
    line-height: 18px;
}

#form-map__section .form__column .contact__form__main .form__message {
    width: 100%;
}

#form-map__section .form__column .contact__form__main .form__message p {
    width: 100%;
}

#form-map__section .form__column .contact__form__main .form__message textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #9a9a9a;
    border-radius: 0;
    width: 100%;
    padding: 5px 0 10px;
    font-size: 16px;
    line-height: 18px;
    height: 100px;
}

#form-map__section .form__column .contact__form__main .submit__form {
    cursor: pointer;
    margin-top: 0;
}

/* Service page css start  */

/* Contact Page css start  */

#contact__section .contact__outer {
    gap: 60px;
    margin-bottom: 20px;
}

#contact__section .contact__outer .contact__column {
    width: calc(50% - 30px);
}

#contact__section .contact__outer .contact__column .contact__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#contact__section .contact__outer .contact__column .contact__text p {
    line-height: 26px;
}

#contact__section .contact__outer .contact__column .contact__text li {
    list-style: disc;
    line-height: 26px;
    font-size: var(--font-size-body-text);
}

#contact__section .contact__outer .contact__column .contact__sub__heading {
    margin: 8px 0 16px;
    max-width: 500px;
}

#parking__section {
    padding: 60px;
    background: var(--background-color);
}

#parking__section .parking__main {
    gap: 60px;
    align-items: center;
}

#parking__section .parking__col {
    width: calc(50% - 30px);
}

.parking__col.zoom_area {
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: flex;
}

#parking__section .parking__col img {
    width: 100%;
}

#parking__section .parking__col .parking__sub__heading {
    margin: 3px 0 12px;
    font-weight: 500;
}

#parking__section .parking__col .parking__content p {
    margin-bottom: 12px;
}


/* Contact Page css end */

/* Know us page start  */

#know__us .know-us__outer {
    padding: 60px;
}

#know__us .know-us__main {
    gap: 60px;
    align-items: center;
}

#know__us .know-us__column {
    width: calc(50% - 30px);
}

#know__us .know-us__column img {
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 380px;
    object-fit: cover;
}

#know__us .know-us__column .know-us__heading {
    margin-bottom: 10px;
}

#know__us .know-us__column .know-us__content ul {
    list-style: disc;
    margin-left: 30px;
    font-size: var(--font-size-body-text);
    line-height: 26px;
    margin-bottom: 10px;
}

#know__us .know-us__column .know-us__content p {
    margin-bottom: 12px;
}

#know__us .know-us__outer:nth-child(even) {
    background: var(--background-color);
}

#know__us .know-us__outer:nth-child(even) .know-us__main {
    flex-direction: row-reverse;
}

/* Know us page end  */

/* Our team page css start  */
#our__team {
    padding: 60px;
}

#our__team .team__main {
    gap: 50px 30px;
    justify-content: center;
}

#our__team .team__column {
    width: calc(25% - 23px);
}

#our__team .team__img {
    display: flex;
    border-radius: 20px;
    height: 350px;
    overflow: hidden;
}

#our__team .team__img img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    ;
    /* box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 20%); */
    /* border: 1px solid #004AAD; */
}

#our__team .team__column:hover .team__img img {
    transform: scale(1.1);
}

#our__team .team__info {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

#our__team .team__info .team__title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    color: #000000;
}

#our__team .team__info .view__detail {
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    font-size: 14px;
    line-height: 16px;
}

#our__team .team__popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

#our__team .team__popup .team__outer {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: auto;
    height: 100%;
    max-height: fit-content;
}

#our__team .team__popup .popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    line-height: 15px;
    cursor: pointer;
}

#our__team .team__popup #popup__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#our__team .team__popup .view__detail {
    display: none;
}

#our__team .team__popup .team__details {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
}

#our__team .team__popup .team__name {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Our team page css end  */


/* Canadian Dental Care Plan css start  */
#phase__section {
    padding: 60px;
}

#phase__section.cdcp__phase {
    background: var(--background-color);
}

#phase__section .phase__main {
    gap: 10px;
    justify-content: center;
    text-align: center;
}

#phase__section .phase__column {
    width: calc(50% - 30px);
}

#phase__section .phase__content p {
    margin-bottom: 16px;
}

#phase__section .phase__content ul {
    margin-bottom: 16px;
    margin-left: 22px;
    font-size: 18px;
    list-style: disc;
    line-height: 26px;
}

#phase__section .fill__btn.phase__btn {
    margin-top: 0;
}

#info__section {
    padding: 60px;
    background: var(--background-color);
}

#info__section.cdcp__info {
    background: none;
}

#info__section .info__main {
    gap: 60px;
    align-items: center;
}

#info__section .info__column {
    width: calc(50% - 30px);
}

#info__section .info__heading {
    margin-bottom: 16px;
}

#info__section .info__content p {
    margin-bottom: 16px;
}

/* #info__section .info__content a {
    color: unset;
    text-decoration: underline;
    text-underline-offset: 3px;
} */

#info__section .info__column img {
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#what__section {
    padding: 80px 60px;
    color: var(--asset-color);
}

#what__section .what__main {
    padding: 60px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 400px;
}

#what__section .what__main:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.7;
}

#what__section .what__content {
    max-width: 900px;
    color: #fff;
}

#what__section .what__main .what__content p {
    color: #fff !important;
}

/* #what__section .what__main .what__content a {
    color: unset;
    text-decoration: underline;
    text-underline-offset: 3px;
} */

#who__section {
    padding: 60px;
    background: var(--background-color);
    text-align: center;
}

#who__section .who__content {
    max-width: 600px;
    margin: 10px auto;
}

#who__section .who__boxes {
    margin: 30px 0;
    gap: 30px;
    justify-content: center;
}

#who__section .who__column {
    width: calc(33.33% - 20px);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0px 4px 40px 0px #0000000F;
    border: 1px solid #0e384c3b;
    border-radius: 20px;
    background: #fff;
}

#who__section .who__title {
    font-weight: 500;
}

#coverage__section {
    padding: 60px;
    text-align: center;
}

#coverage__section .coverage__heading {
    margin-bottom: 30px;
}

#coverage__section .coverage__img {
    display: flex;
}

#coverage__section .coverage__img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#more__section {
    padding: 60px;
    background: var(--background-color);
    text-align: center;
}

#more__section .more__boxes {
    margin: 30px 0 0;
    gap: 30px;
    justify-content: center;
}

#more__section .more__column {
    width: calc(25% - 23px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0px 4px 40px 0px #0000000F;
    border: 1px solid #0e384c3b;
    border-radius: 20px;
    background: #fff;
}

#more__section .more__title {
    font-weight: 500;
}

#faq__section {
    padding: 60px;
}

#faq__section .faq__main {
    gap: 30px;
    justify-content: space-between;
}

#faq__section .faq__heading {
    text-align: left;
    width: calc(40% - 40px);
    max-width: 400px;
}

#faq__section .faq__outer {
    width: 60%;
}

#faq__section .faq__inner {
    padding: 30px 0;
    border-bottom: 1px solid #919191;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#faq__section .faq__inner:nth-child(1) {
    padding-top: 10px;
}

#faq__section .faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

#faq__section .faq__question h6 {
    font-weight: 500;
}

#faq__section .faq__question svg {
    min-width: 16px;
}

#faq__section .faq__inner.active .faq__question h6 {
    color: var(--secondary-color);
    text-shadow: 0 0 var(--secondary-color);
}

#faq__section .faq__inner svg line {
    transition: all 0.5s;
}

#faq__section .faq__inner.active svg line {
    stroke: var(--secondary-color) !important;
}

#faq__section .faq__inner.active svg line.line1 {
    transform: rotate(90deg) translate(75%, -116%);
}


#faq__section .faq__answer {
    font-size: 18px;
    line-height: 24px;
}

/* #faq__section .faq__answer a {
    color: unset;
    text-decoration: underline;
    text-underline-offset: 3px;
} */

#faq__section .faq__answer ul {
    list-style: disc;
    margin-left: 32px;
    font-size: var(--font-size-body-text);
}

#faq__section .faq__answer ul ul {
    list-style: circle;
}

/* Canadian Dental Care Plan css end  */

/* How We Work Page css start  */
#welcome__section {
    padding: 60px;
    text-align: center;
    background: var(--background-color);
}

#welcome__section .welcome__main {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* How We Work Page css end  */


/* Payment Plan Page css Start  */
#faq__section.insurance__accordion {
    background: var(--background-color);
}

#faq__section.insurance__accordion p,
#faq__section.insurance__accordion ul {
    margin-bottom: 16px;
}


#payment__section {
    padding: 60px;
}

#payment__section .payment__main {
    gap: 60px;
}

#payment__section .payment__column {
    width: calc(50% - 30px);
}

#payment__section .payment__content p {
    margin-bottom: 16px;
}

#payment__section .payment__content strong {
    font-weight: 600;
}

#payment__section .payment__content ul {
    margin-bottom: 16px;
    margin-left: 22px;
    font-size: 18px;
    list-style: disc;
    line-height: 26px;
}

#plan__section {
    padding: 60px;
    background: var(--background-color);
}

#plan__section .plan__main {
    gap: 60px;
    align-items: center;
}

#plan__section .plan__column {
    width: calc(50% - 30px);
}

#plan__section .plan__heading {
    margin-bottom: 16px;
}

#plan__section .plan__content p {
    margin-bottom: 16px;
}

#plan__section .plan__content strong {
    font-weight: 600;
}

#plan__section .plan__content ul {
    margin-bottom: 16px;
    margin-left: 22px;
    list-style: disc;
}

#plan__section .plan__column img {
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#question__section {
    padding: 80px 60px;
    background: var(--secondary-color);
    text-align: center;
    color: var(--asset-color);
}

.question__main {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}

#question__section .question__content {
    color: var(--asset-color);
    max-width: 900px;
}

#payment__section.dental__loan {
    background: var(--background-color);
}

#plan__section.beauti__fi {
    background: none;
}

#payment__section.dental__loan img.beautifi__logo {
    max-width: 330px;
}

/* Payment Plan Page css End  */

/* Insurance Policies Page css start  */
#policies__content {
    padding: 40px 60px 60px;
}

#policies__content .policies__main {
    max-width: 1024px;
}

#policies__content .policies__main h1,
#policies__content .policies__main h2,
#policies__content .policies__main h3,
#policies__content .policies__main h4,
#policies__content .policies__main h5,
#policies__content .policies__main h6,
#policies__content .policies__main p,
#policies__content .policies__main ul,
#policies__content .policies__main ol {
    margin-bottom: 16px;
}

#policies__content .policies__main a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

#policies__content .policies__main h2,
#policies__content .policies__main h3,
#policies__content .policies__main h4 {
    margin-top: 30px;
}

#policies__content a.wp-element-button {
    display: flex;
    border: 2px solid var(--secondary-color);
    padding: 10px 28px;
    border-radius: 50px;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: var(--asset-color) !important;
    font-size: var(--font-size-body-text);
    font-weight: 300;
    line-height: 26px;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 10px;
    background: none;
    text-decoration: none !important;
}

#policies__content a.wp-element-button:after {
    content: "";
    width: calc(100% + 10px);
    height: 100%;
    border-radius: 50px;
    position: absolute;
    left: -5px;
    z-index: -1;
    transition: all 0.5s;
    transform: translateX(00%);
    background-color: var(--secondary-color);
    pointer-events: none;
}

#policies__content a.wp-element-button:hover {
    color: var(--secondary-color) !important;
}

#policies__content a.wp-element-button:hover:after {
    transform: translateX(-100%);
}

/* Insurance Policies Page css end  */

/* Incentive Programs page css start  */
#incentive__section {
    padding: 60px;
    background-color: var(--background-color);
}

#incentive__section .incentive__main {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}

#incentive__section .incentive__main .incentive__content {
    max-width: 800px;
    text-align: center;
}

/* Incentive Programs page css end  */

/* Referral Program section css start  */
#referral__section {
    padding: 60px;
}

#referral__section .referral__main {
    gap: 60px;
    align-items: center;
}

#referral__section .referral__column {
    width: calc(50% - 30px);
}

#referral__section .referral__heading {
    margin-bottom: 16px;
}

#referral__section .referral__content p {
    margin-bottom: 16px;
}

#referral__section .referral strong {
    font-weight: 600;
}

/* #referral__section .referral__content a {
    color: unset;
    text-decoration: underline;
    text-underline-offset: 3px;
} */

#referral__section .referral__column img {
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Referral Program section css end  */

/* Blog Page css start  */
#blog__section {
    padding: 60px;
}

#blog__section .blog__main {
    gap: 30px;
}

#blog__section .blog__item {
    width: calc(33.33% - 20px);
    box-shadow: 0px 4px 40px 0px #0000000F;
    border: 1px solid #0e384c1a;
    border-radius: 30px;
    background: var(--background-color);
    overflow: hidden;
}

#blog__section .blog__image a {
    display: flex;
}

#blog__section .blog__image img {
    object-fit: cover;
    aspect-ratio: 9 / 6;
}

#blog__section .blog__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#blog__section .blog__date {
    font-size: 16px;
    font-weight: 300;
    color: #000000a6;
}

#blog__section .blog__title a {
    font-weight: 600;
    color: #000;
}

#blog__section a.read__more {
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    margin-top: 5px;
    color: var(--secondary-color);
}

/* Blog Page css end  */

/* Blog Single Page css start  */
#blog__content {
    padding: 60px;
}

#blog__content .b-detail__main {
    max-width: 900px;
}

#blog__content .b-detail__image img {
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    margin: 20px 0;
}

#blog__content .b-detail__top {
    justify-content: space-between;
    align-items: center;
}

#blog__content .b-detail__date {
    display: flex;
    gap: 10px;
    align-items: center;
}

#blog__content .b-detail__date svg {
    width: 24px;
}

#blog__content .social__share {
    display: flex;
    gap: 10px;
}

#blog__content .social__share ul {
    margin: 0;
    list-style: none;
    display: flex;
    gap: 12px;
}

#blog__content .social__share ul li a {
    display: flex;
}

#blog__content .social__share svg {
    width: 24px;
    height: 24px;
}

#blog__content .b-detail__content h1,
#blog__content .b-detail__content h2,
#blog__content .b-detail__content h3,
#blog__content .b-detail__content h4,
#blog__content .b-detail__content h5,
#blog__content .b-detail__content h6,
#blog__content .b-detail__content p,
#blog__content .b-detail__content ul,
#blog__content .b-detail__content ol {
    margin-bottom: 16px;
}

#blog__content .b-detail__content a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

#blog__content .b-detail__content h2,
#blog__content .b-detail__content h3,
#blog__content .b-detail__content h4 {
    margin-top: 30px;
}

#blog__content strong {
    font-weight: 600;
}

#blog__section.related__blog .related__heading {
    width: 100%;
    text-align: center;
}

#blog__section.related__blog {
    background: var(--background-color);
}

#blog__section.related__blog .blog__item {
    background: var(--asset-color);
}

/* Blog Single Page css end  */




#appointment__section.cdcp__appointment:after {
    display: none;
}