@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?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');

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


:root {
    --font-poppins: "Jost", sans-serif;
    --font-jost: "Poppins", sans-serif;
    --font-cream: "cream-cake";
    --font-cream-bold: "cream-cake-bold";


    /* Site Color */
    --c-primary-1: #49b5c1;
    --c-primary-2: #264653;
    --c-p1-light: #def5f7;
    --c-green: #b1d363;
    --text-white: #FFFFFF;
    --bg-white: #ffffff;
    --bg-light-gray: #f7f9fb;
    --bg-light-blue: #def5f7;

    --black: #000;
    --white: white;
    --w-100: 100%;

    /* Font Size */
    --h1-text: 62px;
    --h2-text: 50px;
    --h3-text: 35px;
    --p-text: 18px;
    --fs-15: 15px;
    --text-24: 24px;
    --text-28: 28px;
    --text-32: 32px;

    /* line height */
    --l-1-1: 1.1em;
    --l-1-55: 1.55em;

    /* Font Weight */
    --fw-300: 300;
    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-800: 800;

    /* border Radius */
    --br-20: 20px;
    --br-10: 10px;
}

@font-face {
    font-family: cream-cake;
    src: url('../fonts/Cream-Cake.otf');
}

@font-face {
    font-family: cream-cake-bold;
    src: url('../fonts/Cream-Cake-Bold.otf');
}

html,
body {
    overscroll-behavior: none;
}


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

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

button {
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
}

button:focus-visible {
    outline: none;
}

p {
    margin: 0;
    padding: 0;
    word-break: break-word;
    line-height: 1.55em;
    font-size: var(--p-text);
    color: var(--c-primary-2);
    font-weight: var(--fw-500);
}

p>a {
    color: var(--c-primary-1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    width: 100%;
}


/* Global Styling Start */

.section-title-dark,
.section-title-light {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.section-title-dark h4 {
    color: var(--c-primary-2);
    font-weight: var(--fw-600);
    font-size: 24px;
}

.section-title-dark h2 {
    font-weight: var(--fw-700);
    font-size: var(--h2-text);
    color: var(--c-primary-2);
    line-height: 1.1em;
}

.section-title-light h2 {
    font-weight: var(--fw-700);
    font-size: var(--h2-text);
    color: var(--text-white);
    line-height: 1.1em;
}

.section-title-light p {
    color: var(--text-white);
}

.btn-blue,
.btn-blue-white {
    display: flex;
}

.btn-blue a,
.btn-blue button {
    display: inline-block;
    color: var(--text-white);
    font-size: var(--fs-15);
    font-weight: var(--fw-600);
    line-height: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 20px;
    width: max-content;
    background: var(--c-primary-1);
    border: 0;
    outline: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all .3s ease-in-out;
    border-radius: 5px;
    overflow: hidden;
}

.btn-blue a::before,
.btn-blue button::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    background-color: var(--c-primary-2);
    width: 100%;
    height: 0%;
    z-index: -1;
    transition: all .3s ease-in-out;
}

.btn-blue a:hover::before,
.btn-blue button:hover::before {
    height: 100%;
    transition: all .3s ease-in-out;
}


/* ---------------------------------- */

.btn-blue-white a,
.btn-blue-white button,
.btn-blue-white span {
    display: inline-block;
    color: var(--text-white);
    font-size: var(--fs-15);
    font-weight: var(--fw-600);
    line-height: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 20px;
    width: max-content;
    background: var(--c-primary-1);
    border: 0;
    outline: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all .3s ease-in-out;
    border-radius: 5px;
    overflow: hidden;
}

.btn-blue-white a::before,
.btn-blue-white button::before,
.btn-blue-white span::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    background-color: var(--bg-white);
    width: 100%;
    height: 0%;
    z-index: -1;
    transition: all .3s ease-in-out;
}

.btn-blue-white a:hover,
.btn-blue-white button:hover,
.btn-blue-white span:hover {
    color: var(--c-primary-2) !important;
    box-shadow: 0 0 24px rgba(0, 0, 0, .15);
    transition: all .3s ease-in-out;
}

.btn-blue-white a:hover::before,
.btn-blue-white button:hover::before,
.btn-blue-white span:hover::before {
    height: 100%;
    transition: all .3s ease-in-out;
}

/* -------------------------- */

.btn-outlined a,
.btn-outlined button {
    display: inline-block;
    color: var(--text-white);
    font-size: var(--fs-15);
    font-weight: var(--fw-600);
    line-height: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 20px;
    width: max-content;
    background: transparent;
    border: 2px solid var(--text-white);
    outline: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all .3s ease-in-out;
    border-radius: 5px;
    overflow: hidden;
}

.btn-outlined a::before,
.btn-outlined button::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    background-color: var(--c-primary-1);
    width: 100%;
    height: 0%;
    z-index: -1;
    transition: all .3s ease-in-out;
}

.btn-outlined a:hover,
.btn-outlined button:hover {
    color: var(--text-white);
    box-shadow: 0 0 24px rgba(0, 0, 0, .15);
    transition: all .3s ease-in-out;
    border-color: var(--c-primary-1);
}

.btn-outlined a:hover::before,
.btn-outlined button:hover::before {
    height: 100%;
    transition: all .3s ease-in-out;
}

.section-padding {
    padding: 80px 0;
}

.section-pb {
    padding-bottom: 80px;
}

.section-pt {
    padding-top: 80px;
}

.bg-light-gray {
    background-color: var(--bg-light-gray);
}

.bg-light-blue {
    background-color: var(--bg-light-blue);
}

.bg-gradient {
    background-image: linear-gradient(135deg, rgba(16, 42, 67, .95) 23%, rgba(56, 190, 201, .75) 94%) !important;
}

.em-cta-c-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Global Styling End */

.em-free-btn-menu a{
    background-color: var(--c-primary-2) !important;
    width: max-content !important;
    margin-left: 28px;
    padding: 10px 20px;
    display: flex;
    margin-top: 20px;
    color: var(--text-white) !important;
    transition: all 0.3s ease;
}

.em-free-btn-menu a{
    background-color: var(--c-primary-1);
    color: var(--c-primary-2);
    transition: all 0.3s ease;
}


/* Hero Section Start */

.em-hero-section {
    background-image: url('../images/home-header-new.jpeg');
    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;
    position: relative;
}

.em-hero-section::before {
    position: absolute;
    inset: 0;
    content: '';
    background-color: #00000074;
}

.em-hero-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px;
    position: relative;
    z-index: 3;
    align-items: center;
}

.em-hero-wrapper h1 {
    font-size: 80px;
    font-family: var(--font-jost);
    /* font-family: var(--font-cream); */
    font-weight: var(--fw-600);
    color: var(--c-primary-1);
    line-height: var(--l-1-1);
    text-align: center;
    margin-bottom: 10px;
}

.em-hero-wrapper p {
    font-size: 34px;
    line-height: 1.3;
    font-weight: var(--fw-600);
    margin-bottom: 30px;
    color: var(--text-white);
    opacity: 0.8;
    text-align: center;
}

/* Hero Section End */

/* Hero Video Start */

.em-hero-video-section {
    position: relative;
}

.em-hero-video-section::before {
    position: absolute;
    content: '';
    inset: 0;
    background-color: #0000008e;
    z-index: 2;
}

.em-hero-video-section .bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.em-hero-video-section .bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Video End */


/* FAQ Section Start */

.em-faq-sec .section-title-dark {
    text-align: center;
}

.accordion-button:not(.collapsed) {
    color: var(--c-primary-1);
    background-color: var(--c-primary-2);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-header button {
    color: var(--text-white);
    font-size: 24px;
    font-weight: var(--fw-500);
    padding: 24px 20px;
}

.accordion-button {
    background-color: var(--c-primary-2);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.accordion-item {
    border-radius: var(--br-10);
    overflow: hidden;
    background-color: none;
    border: none;
}

.accordion-body {
    background-color: var(--c-primary-2);
    color: var(--text-white);
    padding-top: 0;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.accordion-body p {
    color: var(--text-white);
    margin-bottom: 10px;
}

.accordion-body ul {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.accordion-body a {
    color: var(--c-primary-1);
}

.accordion-button:not(.collapsed)::after {
    background-image: url('../images/faq-down-angle.png');
    transition: all 0.3s ease;
}

.accordion-button::after {
    background-image: url('../images/faq-down-angle-white.png');
}

.accordion-body ul li {
    color: var(--text-white);
}

.accordion-item:last-of-type {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

/* FAQ Section End */

/* Footer Start */

.em-footer {
    background-color: var(--c-primary-2);
    padding: 65px 0 0 0;
    position: relative;
    overflow: hidden;
}

.em-footer::before {
    position: absolute;
    content: '';
    top: 0;
    right: -10%;
    width: 800px;
    height: 200px;
    background-image: url('https://embraceorthomi.com/wp-content/uploads/2026/02/logo-b.png');
    background-repeat: no-repeat;
    opacity: 0.1;
    background-position: center;
    background-size: contain;
    z-index: 1;
}

.em-footer .container {
    position: relative;
    z-index: 2;
}

.em-footer-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.em-footer-logo .em-f-logo {
    width: 150px;
}

.em-footer-logo{
    margin-bottom: 50px;
}

.em-footer-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    grid-template-rows: auto;
    column-gap: 50px;
    row-gap: 30px;
    margin-bottom: 65px;
}

.em-footer-wrapper ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.em-footer-wrapper .em-f-address ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.em-footer-wrapper .em-f-address ul li a,
.em-footer-wrapper .em-f-address ul li p {
    display: flex;
    gap: 12px;
    font-size: 16px;
    font-weight: var(--fw-400);
    color: var(--text-white);
    align-items: center;
    transition: all .3s ease;
}

.em-footer-wrapper .em-f-address ul li a:hover,
.em-footer-wrapper .em-f-address ul li p:hover {
    color: var(--c-primary-1);
    transition: all .3s ease;
}

.em-footer-wrapper .em-f-address ul li a:hover span,
.em-footer-wrapper .em-f-address ul li p:hover span {
    color: var(--c-primary-1);
    border-color: var(--c-primary-1);
    transition: all .3s ease;
}

.em-footer-wrapper .em-f-address ul li a span,
.em-footer-wrapper .em-f-address ul li p span {
    border: 1px solid var(--c-primary-1);
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--c-primary-1);
    font-weight: normal;
    font-size: 16px;
    transition: all .3s ease;
    background-color: #49b5c13b;
}

.em-footer-wrapper .em-f-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.em-footer-wrapper .em-f-links h4 {
    color: var(--c-primary-1);
    font-weight: var(--fw-400);
    font-size: 20px;
    position: relative;
}

.em-footer-wrapper .em-f-links h4::after{
    position: absolute;
    content: '';
    width: 25px;
    height: 2px;
    background-color: var(--c-primary-1);
    bottom: -5px;
    left: 0;
}



.em-footer-wrapper .em-f-links ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.em-footer-wrapper .em-f-links ul li a {
    font-size: 16px;
    font-weight: var(--fw-400);
    color: var(--text-white);
    transition: all .3s ease;
}

.em-footer-wrapper .em-f-links ul li a:hover {
    color: var(--c-primary-1);
    transition: all .3s ease;
}

.em-footer-wrapper .em-f-copy {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

 .em-f-social {
    display: flex;
    gap: 20px;
}

 .em-f-social {
    display: flex;
    gap: 20px;
}

 .em-f-social a {
    display: flex;
}

 .em-f-social a span {
    width: 35px;
    height: 35px;
    border: 1px solid var(--c-primary-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary-1);
    font-weight: normal;
    border-radius: 5px;
    transition: all .3s ease;
    background-color: #49b5c134;
}

.em-f-address{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.em-f-social a span:hover {
    border: 1px solid var(--c-primary-1);
    color: var(--c-primary-1);
    background-color: transparent;
    transition: all .3s ease;
}

.em-footer-wrapper .em-f-main {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 275px;
    border-radius: var(--br-10);
    overflow: hidden;
}

.em-footer-wrapper .em-f-main span {
    font-size: 18px;
    font-weight: var(--fw-600);
    color: var(--text-white);
}

.em-footer-wrapper .em-f-main ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.em-footer-wrapper .em-f-main ul a {
    font-size: 18px;
    font-weight: var(--fw-500);
    color: var(--text-white);
}

.em-footer-bottom {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #ffffff50;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.em-footer-bottom span {
    color: var(--text-white);
    font-weight: var(--fw-400);
    font-size: 16px;
    text-align: center;
}

.em-footer-bottom span a {
    color: var(--c-primary-1);
}

/* Footer End */

/* Logo Section Start */

.em-logo-section {
    padding: 50px 0;
}

.em-logo-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    column-gap: 30px;
    row-gap: 30px;
    align-items: center;
    justify-content: center;
}

.em-logo-wrapper a{
    display: flex;
    align-items: center;
    justify-content: center;
}

.em-logo-wrapper img {
    aspect-ratio: 4/3;
    object-fit: contain;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

/* Logo Section End */

/* About Section Start */

.em-about-section .section-title-dark {
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.em-about-wrapper {
    margin-top: 50px;
    background-color: var(--c-primary-2);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    row-gap: 30px;
    border-radius: var(--br-10);
    overflow: hidden;
}



.em-about-wrapper .em-about-left {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.em-about-wrapper .em-about-left::before {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    width: 200px;
    height: 150px;
    background-image: url('../images/logo-white-stroke.png');
    background-position: top left;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.em-about-wrapper .em-about-left .em-about-img {
    display: flex;
    gap: 10px;
    margin-top: 50px;
}

.em-about-wrapper .em-about-left .em-about-img img {
    width: 100px;
}

.em-about-wrapper .em-about-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section End */


/* Blog Section Start */
.em-blog-sec {
    background-image: url('../images/dot-grid.png.jpeg');
    width: 100%;
    height: 100%;
    background-position: center;
}

.em-blog-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 24px;
    row-gap: 60px;
}

.em-single-blog {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.em-blog-image {
    width: 100%;
    height: 350px;
}

.em-blog-image {
    border-radius: var(--br-10);
    overflow: hidden;
}

.em-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.em-blog-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.em-blog-content h3 {
    transition: all 0.3s ease;
    color: var(--c-primary-2);
    font-weight: var(--fw-500);
}

.em-blog-content h3:hover {
    color: var(--c-primary-1);
}

.em-blog-content p {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Section End */


/* CTA Content Section Start */
.em-cta-c-sec {
    background-color: var(--c-primary-2);
    position: relative;
    overflow: hidden;
}

.em-cta-c-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
    z-index: 1;
    position: relative;
}

.em-cta-c-sec .em-cta-c-wrapper .section-title-light {
    margin-bottom: 0;
}

.em-cta-btn {
    display: flex;
    justify-content: center;
}

.em-cta-c-bg-img {
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translate(0, -50%);
    max-width: auto;
    max-height: auto;
    opacity: 0.2;
    z-index: 0;
    display: none;
}

.em-cta-c-bg-img img {
    height: 100%;
    width: 100%;
}

/* CTA Content Section End */

/* FAQ Section Start */
.accordion-button:not(.collapsed) {
    color: var(--c-primary-1);
    background-color: var(--c-primary-2);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-header button {
    color: var(--text-white);
    font-size: var(--text-24);
    padding: 24px 20px;
}

.accordion-button {
    background-color: var(--c-primary-2);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.accordion-item {
    border-radius: var(--br-10);
    overflow: hidden;
    background-color: none;
    border: none;
}

.accordion-body {
    background-color: var(--c-primary-2);
    color: var(--text-white);
    padding-top: 0;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.accordion-body p {
    color: var(--text-white);
    margin-bottom: 10px;
}


.accordion-button {
    gap: 10px;
}

.em-con-hours ul {
    padding-left: 0px;
}

.accordion-body ul {
    padding: 10px 0px 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 0;
}

textarea:focus {
    box-shadow: none !important;
}

.accordion-body ul li {
    color: var(--text-white);
}

.accordion-body a {
    color: var(--c-primary-1);
}

.accordion-button:not(.collapsed)::after {
    background-image: url('../images/faq-down-angle.png');
    transition: all 0.3s ease;
}

.accordion-button::after {
    background-image: url('../images/faq-down-angle-white.png');
}

/* FAQ Section End */

/* Braces Type Section Start */
.em-braces-single-sec {
    display: flex;
    align-items: start;
    gap: 30px;
    padding-bottom: 80px;
}

.em-braces-single-sec:last-child {
    padding-bottom: 0;
}

.em-braces-img {
    width: 50%;
    border-radius: var(--br-10);
    overflow: hidden;
}

.em-braces-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.em-braces-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 15px;
}

.em-braces-text h3 {
    margin-bottom: 20px;
    color: var(--c-primary-2);
    font-weight: var(--fw-600);
}

.em-braces-text p {
    margin-top: 12px;
}

.em-braces-single-sec:nth-child(odd) {
    display: flex;
}

.em-braces-single-sec:nth-child(even) {
    flex-direction: row-reverse;
}

/* Braces Type Section End */

/* Service Content Section Start  */
.em-service-content-sec .section-title-dark {
    margin-bottom: 40px;
}

.em-service-content-text img {
    border-radius: var(--br-10);
    /* margin-bottom: 30px; */
    width: 800px;
    margin-top: 20px;
}



.em-service-content-text ul {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;

}

.em-service-content-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.em-service-content-text h3 {
    color: var(--c-primary-2);
    font-weight: var(--fw-600);
    margin-top: 20px;
}

.em-service-content-text ul li {
    color: var(--c-primary-2);
}

.em-service-content-text ul li::marker {
    color: var(--c-primary-2);
}

/* Service Content Section End  */

/* What To do Image Section Start */
.em-what-to-do-wrapper {
    display: flex;
    align-items: start;
    gap: 30px;
    margin-top: 50px;
}

.em-what-to-do-wrapper .em-what-to-do-title {
    width: 40%;
}

.em-what-to-do-content {
    width: 60%;
}

.em-what-to-do-content ul {
    color: var(--c-primary-2);
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.em-what-to-do-content p {
    margin-bottom: 10px;
}

.em-what-to-do-content p:last-child {
    margin-bottom: 0;
}

.em-what-to-do-content .btn-blue {
    padding-top: 30px;
}

.em-what-to-do-wrapper-img img {
    height: 100%;
    max-width: 100%;
}


/* What To do Image Section End */

/* Top Inner Banner Section Start */
.em-top-inner-banner-sec {
    position: relative;
    height: 100dvh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 100px;
}

.em-top-inner-banner-sec::after {
    position: absolute;
    content: '';
    inset: 0;
    /* background-color: #00000060; */
}

.em-inner-banner-img {
    position: absolute;
    inset: 0;
}

.em-inner-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: brightness(0.8);
}

.em-top-inner-banner-sec .section-title-light {
    margin-bottom: 0;
}


.em-top-inner-banner-content {
    position: relative;
    z-index: 1;
}

.em-top-inner-banner-content .section-title-light h1 {
    font-size: var(--h1-text);
    color: var(--text-white);
    font-weight: var(--fw-700);
    text-align: center;
}

/* Top Inner Banner Section End */

/* Careers Page Style Start */
.em-cta-c-wrapper .btn-blue-white {
    justify-content: center;
}

/* Careers Page Style End */

/* Privacy Policy Section Start */
.em-pp-wrapper {
    max-width: 830px;
    margin: 0 auto;
}

.em-pp-wrapper p {
    margin-top: 18px;
}

.em-pp-wrapper h5 {
    margin-top: 30px;
    color: var(--c-primary-2);
}

.em-pp-wrapper ul {
    margin: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: var(--c-primary-2);
}

/* Privacy Policy Section End */

/* Special Section Start */
.em-sp-wrapper {
    display: flex;
    align-items: center;
    gap: 75px;
}

.em-sp-content-image {
    width: 60%;
    height: 100%;
    border-radius: var(--br-10);
    overflow: hidden;
}

.em-sp-content-detail {
    width: 40%;
    text-align: center;
}

.em-sp-content-image img {
    width: 100%;
    height: 100%;
}

.em-sp-content-detail .em-sp-inner-title h3 {
    font-weight: var(--fw-700);
    color: var(--c-primary-2);
    font-size: var(--h3-text);
}

.em-sp-sec .section-title-dark {
    text-align: center;
    margin-bottom: 50px;
}

.em-sp-sec .section-title-dark h2 span:nth-child(1) {
    color: var(--c-primary-1);
}

.em-sp-sec .section-title-dark h2 span:nth-child(2) {
    color: rgb(204, 153, 255);
}

/* Special Section End */


/* Image Link Hover Section Start */
.em-img-dark-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 24px;
}

.em-image-hover-content img {
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
}

.em-image-hover-main-content:hover img {
    transform: scale(1.06);
    transition: all 0.4s ease;
}

.em-image-hover-main-content:hover::after {
    background-color: #00000050;
    transition: all 0.4s ease;
}

.em-image-hover-main-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--br-10);
    overflow: hidden;
}

.em-image-hover-main-content::after {
    content: '';
    display: block;
    position: absolute;
    background-color: #00000075;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.4s ease;
}

.em-image-hover-main-content .em-image-hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: 100%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.em-image-hover-text {
    z-index: 1;
    position: relative;
}

.em-image-hover-text h3 {
    font-weight: var(--fw-700);
    color: var(--text-white);
}

/* Image Link Hover Section End */

/* Near me Girl Section Start */

.em-what-is-an-ortho-wrapper {
    display: flex;
    align-items: start;
    gap: 30px;
}

.em-what-is-an-ortho-wrapper-img {
    width: 50%;
}

.em-what-is-an-ortho-wrapper-img img {
    width: 100%;
    height: 100%;
}

.em-near-me-girl-sec .em-what-is-an-ortho-content {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.em-near-me-girl-sec .em-what-is-an-ortho-wrapper {
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.em-near-me-girl-sec .em-what-is-an-ortho-wrapper-img {
    border-radius: var(--br-10);
    overflow: hidden;
}

.em-near-me-girl-sec .em-what-is-an-ortho-content .section-title-dark {
    margin-bottom: 20px;
}

.em-near-me-girl-sec .em-what-is-an-ortho-content h3 {
    margin: 20px 0;
}

.em-near-me-girl-sec .em-what-is-an-ortho-content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--c-primary-2);
}

.em-near-me-girl-sec .em-what-is-an-ortho-content ul li {
    color: var(--c-primary-2);
}

.em-near-me-girl-sec .em-what-is-an-ortho-content p {
    margin-top: 18px;
}

.em-near-me-girl-sec .em-near-me-top-title {
    text-align: center;
}

.em-near-me-girl-sec h3 {
    color: var(--c-primary-2);
    font-weight: var(--fw-700);
}

/* Near me Girl Section End */

/* Near me Card Section Start */
.em-near-me-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 24px;
    margin-top: 80px;
    margin-bottom: 40px;
}

.em-near-me-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 30px;
    text-align: center;
    border-radius: var(--br-10);
    overflow: hidden;
    padding: 40px 30px;
    /* background-color: var(--bg-white); */
    border: 1px solid var(--c-primary-2);
}

.em-near-me-card-img img {
    width: 100%;
    height: 100%;
}

.em-near-me-card-content h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: var(--fw-700);
    font-size: var(--h2-text);
    color: var(--c-primary-2);
}

.em-near-me-girl-sec .em-what-to-do-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 45%;
}

.em-near-me-girl-sec .em-what-to-do-wrapper {
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.em-near-me-girl-sec .em-what-to-do-wrapper-img {
    border-radius: var(--br-10);
    overflow: hidden;
}

.em-near-me-girl-sec .em-near-me-top-title {
    text-align: center;
}

.em-near-me-girl-sec h3 {
    color: var(--c-primary-2);
    font-weight: var(--fw-700);
}



/* Blog detail section styling starts */

.em-blog-detail-section {
    margin-top: 200px;
}

.em-blog-detail-section .em-blog-detail-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.em-blog-detail-wrapper h1 {
    font-size: var(--h1-text);
    color: var(--c-primary-2);
    line-height: var(--l-1-1);
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    font-weight: var(--fw-700);
}

.em-blog-detail-wrapper img {
    max-width: 100%;
    margin-bottom: 40px;
    border-radius: var(--br-10);
}

.em-blog-detail-wrapper h2 {
    margin-bottom: 25px;
    font-weight: var(--fw-700);
    font-size: var(--h2-text);
    line-height: var(--l-1-1);
    color: var(--c-primary-2);
}

.em-blog-detail-wrapper p {
    margin-bottom: 30px;
    font-size: 23px;
    line-height: var(--l-1-55);
    font-weight: var(--fw-400);
}

/* Blog detail section styling ends */

/* 404 Error section styling starts */

.em-404-page-section .em-404-wrapper {
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 120px;

}

.em-404-wrapper h2 {
    font-size: var(--h2-text);
    color: var(--title-text);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: var(--l-1-1);
}

.em-404-wrapper p {
    margin-bottom: 25px;
}

.em-404-wrapper .btn-blue a {
    margin: 0px 10px 10px;
}

/* 404 Error section styling ends */


/* Thank you section styling starts */

.em-thank-you-page-section .em-thank-you-wrapper {

    padding: 96px 0px;
    margin: auto;
    max-width: 814px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding-top: 239px;
}

.em-thank-you-wrapper h2 {
    font-weight: var(--fw-700);
    color: var(--c-primary-2);
    font-size: var(--h2-text);
    text-align: center;
}

.em-thank-you-wrapper p {
    font-size: var(--p-text);
    line-height: var(--l-1-55);
    color: var(--c-primary-2);
    text-align: center;
    margin-bottom: 25px;
}

.em-thank-you-wrapper span {
    width: 814px;
    max-width: 100%;
    border-top: 1px solid var(--c-primary-2);
    color: #ccc;
}

/* Thank you section styling ends */


/* Service card start */

.em-service-sec {
    background-color: var(--bg-light-gray);
}

.em-service-sec .section-title-dark {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.em-ser-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    column-gap: 30px;
    row-gap: 30px;
}

.em-ser-cards-wrapper .em-ser-card {
    display: flex;
    flex-direction: column;
    /* padding: 20px; */
    border-radius: var(--br-10);
    transition: all .5s ease;
    background-color: var(--c-primary-2);
    box-shadow: 0 0 24px rgba(0, 0, 0, .15);
    overflow: hidden;
}

.em-ser-cards-wrapper .em-ser-card .em-s-card-img {
    overflow: hidden;
}

.em-ser-cards-wrapper .em-ser-card .em-ser-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.em-ser-card-bottom {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.em-ser-card-bottom::before {
    position: absolute;
    content: '';
    width: 200px;
    height: 150px;
    background-image: url('../images/logo-white-stroke.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    right: 0;
    bottom: 0;
}

.em-ser-card-bottom .em-ser-card .em-ser-title h3 {
    font-weight: var(--fw-600);
}

.em-ser-card .em-ser-title h3,
.em-ser-card .em-ser-title p {
    color: var(--text-white);
}

.em-ser-card .em-ser-title p {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.em-ser-cards-wrapper .em-ser-card:hover {
    box-shadow: 0 0 24px rgba(0, 0, 0, .15);
    transition: all .5s ease;
    transform: translateY(-10px);
    background-color: var(--c-primary-2);
}

.em-ser-cards-wrapper .em-ser-card:hover .em-ser-title h3,
.em-ser-cards-wrapper .em-ser-card:hover .em-ser-title p {
    color: var(--text-white);
    transition: all .5s ease;
}

.em-ser-btn-more {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Service card end */

/* Tratment Section Start */

.em-treat-section .section-title-dark {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.em-treat-wrapper:nth-child(odd) {
    display: grid;
    grid-template-columns: 4fr 6fr;
    grid-template-rows: auto;
    column-gap: 50px;
    row-gap: 50px;
    margin-bottom: 50px;
}

.em-treat-wrapper:nth-child(even) {
    display: grid;
    grid-template-columns: 6fr 4fr;
    grid-template-rows: auto;
    column-gap: 50px;
    row-gap: 50px;
    margin-bottom: 50px;
}

.em-treat-wrapper:nth-child(even) .em-treat-card:nth-child(1) {
    order: 2;
}

.em-treat-wrapper:nth-child(even) .em-treat-card:nth-child(2) {
    order: 1;
}

.em-treat-wrapper .em-treat-card:nth-child(1) {
    padding: 80px 50px;
    background-color: var(--c-primary-2);
}

.em-treat-wrapper .em-treat-card {
    border-radius: var(--br-10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.em-treat-wrapper .em-treat-card:nth-child(1) .em-treat-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.em-treat-wrapper .em-treat-card:nth-child(1) {
    position: relative;
}

.em-treat-wrapper .em-treat-card:nth-child(2) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    filter: brightness(0.8);
}

.em-treat-wrapper .em-treat-card:nth-child(1)::before {
    position: absolute;
    content: '';
    bottom: -70%;
    right: -50%;
    background-image: url('../images/logo-white.png');
    background-repeat: no-repeat;
    background-size: cover;
    /* transform: rotate(-15deg); */
    opacity: 0.1;
    width: 100%;
    height: 100%;
}

.em-treat-wrapper .em-treat-card:nth-child(1) .em-treat-title h3 {
    color: var(--text-white);
    font-weight: var(--fw-600);
}

.em-treat-wrapper .em-treat-card:nth-child(1) .em-treat-title p {
    color: var(--text-white);
}

/* Tratment Section end */

.header-cta-button .btn-blue a i {
    display: none;
}


/* Office Tour Image Gallery Section Start */
.em-office-t-image-gallery-sec .section-title-dark {
    text-align: center;
}

.em-office-t-img-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.em-office-t-img-item {
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 6px;
    border-radius: var(--br-10);
    overflow: hidden;
    filter: brightness(0.7);
    transition: all 0.4s ease;
}

.em-office-t-img-item:hover {
    filter: brightness(1);
    transition: all 0.4s ease;
}

.em-office-t-img-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Modal */
.em-office-t-img-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.em-thank-you-wrapper p:last-child {
    margin-bottom: 0px;
}

#emOfficeModalImg {
    max-width: 60%;
    max-height: auto;
}

.em-office-t-img-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}

.em-office-t-img-prev,
.em-office-t-img-next {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    user-select: none;
}

.em-office-t-img-prev {
    left: 20px;
}

.em-office-t-img-next {
    right: 20px;
}

/* Office Tour Image Gallery Section End */

.em-small-nav-btn {
    display: none;
}

.em-ser-slider {
    display: none;
}


/* Contact Us Page styling starts */

/* Contact us form section styling starts */

.em-contact-us-form-section .section-title-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.em-contact-us-form-section .section-title-dark h2 {
    font-size: var(--h2-text);
    font-weight: var(--fw-700);
    color: var(--c-primary-2);
    text-align: center;
}

.em-contact-us-form-section-wrapper {
    display: flex;
    gap: 40px;
    align-items: start;
    justify-content: space-between;
}

.em-contact-us-form-section-wrapper .em-contact-info {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    background: var(--text-white);
}

.em-contact-us-form-section-wrapper .em-contact-info h3 {
    font-size: var(--text-45);
    font-weight: var(--fw-700);
    color: var(--c-primary-2);
}

.em-contact-us-form-section-wrapper .em-contact-info p {
    margin: 8px 0px;
    display: flex;
    align-items: center;
    font-size: var(--p-text);
    gap: 10px;
}

.em-contact-us-form-section-wrapper .contact-info-head {
    margin: 20px 0px;
}

.em-contact-info p>a {
    color: var(--c-primary-2);
}

.em-contact-info p>a:hover {
    color: var(--c-primary-1);
}

.em-contact-info p>span {
    color: var(--c-primary-2);
}

.em-contact-info p>span:hover {
    color: var(--c-primary-1);
}

.em-contact-info i {
    color: var(--c-primary-2);
    font-size: var(--p-text);
}

.em-contact-info .btn-blue {
    padding-top: 10px;
}

.em-contact-us-form-section-wrapper .em-contact-info ul {
    padding-left: 0px;
}

.em-contact-info ul li p {
    font-size: var(--text-24);
    font-weight: var(--fw-400);
    color: var(--c-primary-2);
}

.em-contact-us-form-section-wrapper .em-contact-form {
    background: var(--c-primary-2);
    border-radius: var(--br-20);
    width: 50%;
    padding: 20px;
    height: 560px;
}

.em-contact-form-title h2 {
    font-size: var(--text-45);
    font-weight: var(--fw-700);
    color: var(--text-white);
}

.em-contact-us-map .em-contact-map {
    width: 100%;
    border-radius: var(--br-10);
    overflow: hidden;
}

/* Contact us form section styling starts */

/* Contact Us Page styling ends */

/* Refer a friend for page starts */

/* Friend form section styling starts */

.em-refer-friend-form-section .section-title-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.em-refer-friend-form-section .section-title-dark h2 {
    font-size: var(--h2-text);
    font-weight: var(--fw-700);
    color: var(--c-primary-2);
    text-align: center;
}

.em-refer-friend-form-section .section-title-dark p {
    text-align: center;
}

.em-refer-friend-form-section-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.em-refer-friend-form-section-wrapper .em-contact-form {
    background: var(--c-primary-2);
    border-radius: var(--br-20);
    width: 50%;
    padding: 20px;
    /* height: 560px; */
}

/* Friend form section styling ends */

/* Refer a friend for page ends */


/* Schedule Consult section page starts */

/* Consult contentsectionstyling starts */

.em-schedule-consult-sec .section-title-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.em-schedule-consult-sec .section-title-dark h2 {
    font-size: var(--h2-text);
    font-weight: var(--fw-700);
    color: var(--c-primary-2);
    text-align: center;
}

.em-schedule-consult-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.em-schedule-consult-text p {
    font-size: var(--p-text);
    color: var(--c-primary-2);
    font-weight: var(--fw-500);
    text-align: center;
}

.em-schedule-consult-text .btn-blue-white i {
    font-size: var(--text-24);
    align-self: center;
    transform: translateY(10%);
}

/* Consult contentsectionstyling ends */

/*  Edge Booking frame section  styling starts */

.em-consult-booking-wrapper iframe {
    border-radius: var(--br-20);
    border: 1px solid #00000054;
    min-height: 800px;
     height: 1000px !important;
}

/*  Edge Booking frame section  styling ends */


/* Schedule Consult section page ends */

/* Covid 19 page starts */

.em-covid-19-section .em-covid-19-content-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
}

.em-covid-19-content-wrapper .em-covid-19-content-wrapper .em-covid-top-content p>strong {
    font-weight: 700;
}

.em-covid-top-content h3 {
    font-weight: var(--fw-700);
    font-size: var(--h3-text);
    color: var(--c-primary-2);
}

.em-covid-top-content ul {
    list-style-type: disc;
    padding-inline-start: 40px;
}

.em-covid-top-content li {
    color: var(--c-primary-2);
}


.em-covid-top-content span>p {
    font-size: var(--text-24);
}


/* Covid 19 page ends */

/* Free consult page starts */

.em-free-consult-form-section .section-title-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.em-free-consult-form-section .section-title-dark h2 {
    text-align: center;
}

.em-free-consult-form-section .section-title-dark p {
    text-align: center;
}

.em-free-consult-form-section-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.em-free-consult-form-section-wrapper .em-contact-form {
    background: var(--c-primary-2);
    border-radius: var(--br-20);
    width: 50%;
    padding: 20px;
    height: 560px;
}


/* Free consult page ends */


.em-why-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.em-why-card {
    border-radius: var(--br-10);
    display: flex;
    gap: 50px;
    padding: 50px;
    /* background-color: var(--c-primary-2); */
    box-shadow: 0 0 24px rgba(0, 0, 0, .15);
    background-image: linear-gradient(135deg, rgba(16, 42, 67, .95) 23%, rgba(56, 190, 201, .75) 94%);
}

.em-why-card .em-why-icon {
    width: 200px;
    flex-shrink: 0;
}

.em-why-card .em-why-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.em-why-card .em-why-content h3 {
    color: var(--text-white);
    font-weight: var(--fw-600);
}

.em-why-card .em-why-content p {
    color: var(--text-white);
}

.em-why2-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 50px;
    row-gap: 50px;
    align-items: stretch;
}

.em-w2-card {
    background: var(--c-primary-2);
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-radius: var(--br-10);
    padding: 30px;
}

.em-w2-card .em-w2-img {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.em-w2-card .em-w2-img img {
    object-fit: contain;
}

.em-w2-card .em-w2-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.em-w2-card .em-w2-content h3,
.em-w2-card .em-w2-content p {
    color: var(--text-white);
}

.em-w2-card .em-w2-content h3 {
    font-weight: var(--fw-600);
}

/* Thanks page styling starts */

/* Thanks page experience section starts */

.em-thanks-edu-exp-section {
    background: var(--bg-light-gray)
}

.em-thanks-edu-exp-section .em-thanks-edu-exp-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

/* Thanks page experience section ends */

/* honors awards publication section styling starts */

.em-honors-awards-publications-section {
    background: var(--bg-light-gray);
}

.em-honors-awards-publication-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.em-honors-awards-publication-wrapper li {
    color: var(--c-primary-2);
}


/* honors awards publication section styling ends */

/* Thanks page styling ends */

/* Thankyou page styling starts */

.em-thankyou-res-section {
    background: var(--c-primary-1);
    text-align: center;
}

.em-thankyou-res-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.em-thankyou-res-wrapper .thanks-logo {
    max-width: 180px;
    max-height: 180px;
}

.em-thankyou-res-wrapper p {
    text-align: center;
}

.em-thankyou-res-wrapper .social-media {
    display: flex;
    max-width: 200px;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.social-media .social-media-fb,
.social-media .social-media-g,
.social-media .social-media-tw {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: var(--br-10);
    background: var(--text-white);
}

.social-media i {
    font-size: var(--text-24);
    color: var(--c-primary-1);
}


/* Thankyou page styling ends */

/* Your First Visit Section Start */
.em-your-first-content-detail h3 {
    margin-top: 40px;
    margin-bottom: 24px;
    font-size: var(--h3-text);
    font-weight: var(--fw-700);
    color: var(--c-primary-2);
}

.em-your-first-content-detail .section-title-dark {
    text-align: start;
}

.em-your-first-inner-image-b {
    margin: 10px 0 0 0;
    border-radius: var(--br-10);
    overflow: hidden;
    width: 100%;
    max-height: 800px;
}

.em-your-first-inner-image-b img {
    width: 100%;
    height: 100%;
}

/* Your First Visit Section End */

/* List Section Start */
.em-list-section {
    background-color: var(--c-primary-2);
}

.em-list-section .em-list-sec-wrapper {
    padding: 40px 30px;
    border-radius: var(--br-10);
}

.em-single-list-content-section {
    margin-top: 50px;
}

.em-single-list-content-section ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.em-single-list-content-section:first-child {
    margin-top: 0;
}

/* List Section End */

.em-service-section-inner-title {
    margin-top: 50px;
}


/* Before After Image Section Start */
.image-sliders {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}



.main-slide {
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.fein-after-before {
    position: absolute;
    width: 100%;
    z-index: 9;
    display: flex;
    bottom: 0;
    justify-content: space-between;
}



.main-slide .inner-btn {
    padding: 7px 22px;
    background: #000000cf;
    color: white;
    margin: 10px;
    font-size: 20px;
    letter-spacing: 1px;
    border-radius: 5px;
}



.image-slider .slider {
    position: relative;
}

.innn {
    position: relative;
}

.img-wrapper {
    overflow: hidden;
}



input::-webkit-slider-thumb {
    /* reset */
    -webkit-appearance: none;
    appearance: none;
    /* custom */
    height: 2.25rem;
    width: 2.25rem;
    border: .25rem solid #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 height%3D%2224px%22 viewBox%3D%220 -960 960 960%22 width%3D%2224px%22 fill%3D%22%23000%22%3E%3Cpath d%3D%22M286.15-293.85 100-479.62l185.77-185.76 42.15 41.76-113 113.62h530.16l-113-113.62 42.15-41.76L860-479.62 674.23-293.85l-42.54-41.77 113.39-114H214.54l113.38 114-41.77 41.77Z%22/%3E%3C/svg%3E');
    background-size: cover;
    cursor: grab;
}

.img-wrapper:nth-child(2) {
    clip-path: inset(0px 0px 0px 50%);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.image-slider input {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: ew-resize;
    z-index: 5;
}



.image-sliders .image-slider {
    width: 48%;
    border: 1px solid #0000003b;
padding: 15px;
border-radius: 5px;
}

.em-b-a-section .section-title-dark {
    text-align: center;
}

.em-slide-content {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.em-slide-content h4 {
    color: var(--c-primary-2);
    font-weight: var(--fw-600);
    font-size: 34px;
}

.em-slide-content p {
    color: var(--c-primary-2);
}

.em-slide-outer-content {
    margin-top: 50px;
    text-align: center;
}

/* Before After Image Section End */

.em-b-of-i-sec .em-service-content-text {
    text-align: center;
}

.em-service-section-bottom-text {
    margin-top: 50px;
}

.em-ser-con-wrapper {
    display: flex;
    gap: 50px;
}

.em-ser-img-inner {
    width: 300px;
    flex-shrink: 0;
}

.em-ser-img-inner img {
    aspect-ratio: 4/3;
    object-fit: contain;
}

.em-ser-c-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    gap: 20px;
    flex-wrap: wrap;
}


.em-slr-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 50px;
    row-gap: 50px;
}

.em-slr-left {
    border-radius: var(--br-10);
    overflow: hidden;
    height: max-content;
}

.em-slr-left video {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.em-slr-left img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.em-slr-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}

.em-slr-right img {
    border-radius: var(--br-10);
}

.em-slr-right .section-title-dark {
    margin-bottom: 0;
}

.em-slr-right .em-slr-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.em-slr-content h3 {
    color: var(--c-primary-2);
}

.em-slr-content-wrapper {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.em-slr-note-wrapper {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: center;
    align-items: center;
}


.em-review-section-card .section-title-dark {
    text-align: center;
}

.em-review-page-card-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 40px;
    row-gap: 40px;
}

.em-review-page-card-wrapper .em-re-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: var(--c-primary-2);
    border-radius: var(--br-10);
    overflow: hidden;
    box-shadow: 0 0 24px rgba(0, 0, 0, .15);
}

.em-re-card .em-r-card-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0px 20px 20px 20px;
}

.em-r-card-meta .em-r-star i {
    color: var(--c-green);
    font-size: 26px;
}

.em-r-card-meta .em-r-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.em-r-card-meta .em-r-content p {
    color: var(--text-white);
}

.em-r-card-meta .em-r-content span {
    color: var(--c-primary-1);
    font-size: var(--p-text);
    font-weight: var(--fw-600);
}

.Crowding-info-cards p {
    font-size: var(--p-text);
}

.Crowding-info-cards ul li {
    margin-bottom: 10px;
}

.crowding-info-cards-main {
    width: 50%;
    padding: 40px;
    background: #a8c4cf;
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.crowding-info-cards-main p {
    color: var(--c-primary-2);
}

.crowding-img {
    height: 300px;
}

.crowding-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.crowding-info-cards-main h3 {
    color: var(--c-primary-2);
}

.crowding-info-cards-main h2 {
    color: var(--c-primary-2);
}

.crowding-info-cards-main ul {
    margin-top: 10px;
}

.crowding-info-cards-main ul li {
    color: var(--c-primary-2);
    font-size: var(--p-text);
    font-weight: var(--fw-500);
    margin-bottom: 2px;
}


/* Areas serverd card section styling starts*/

.em-area-location-main .section-title-dark {
    text-align: center;
}

.em-loc-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 30px;
    row-gap: 30px;
}

.em-loc-wrapper .em-loc-crad {
    width: 100%;
    height: 300px;
    background-color: var(--c-primary-2);
    box-shadow: 0 0 24px rgba(0, 0, 0, .15);
    border-radius: var(--br-10);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 32px;
    font-weight: var(--fw-600);
    transition: all .5s ease;
    position: relative;
    text-align: center;
}

.em-loc-wrapper .em-loc-crad::before {
    position: absolute;
    content: '';
    width: 200px;
    height: 150px;
    right: 0;
    bottom: 0;
    background-image: url('../images/logo-white-stroke.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.05;
    transition: all .5s ease;
}

.em-loc-wrapper .em-loc-crad:hover {
    transition: all .5s ease;
    transform: translateY(-10px);
}

.em-loc-wrapper .em-loc-crad:hover::before {
    opacity: 0.3;
    transition: all .5s ease;
}

/* Areas serverd card section styling ends*/

.em-itero-card-section .section-title-dark {
    text-align: center;
}

.em-itero-wrappepr {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    column-gap: 30px;
    row-gap: 30px;
}

.em-itero-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--c-primary-2);
    border-radius: var(--br-10);
    align-items: center;
    justify-content: center;
}

.em-itero-card .em-itero-icon {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.em-itero-card .em-itero-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.em-itero-card .em-itero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.em-itero-card .em-itero-content h4 {
    color: var(--text-white);
    font-weight: var(--fw-600);
}

.em-itero-card .em-itero-content p {
    color: var(--text-white);
}

.em-slr-instru {
    margin-top: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.em-slr-instru h5 {
    font-size: 24px;
    color: var(--c-primary-2);
    font-weight: var(--fw-600);
}

.em-content-grid-text {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    column-gap: 20px;
    row-gap: 20px;
}

.em-content-grid-text .em-c-g-card {
    background-color: var(--c-primary-2);
    padding: 20px;
    border-radius: var(--br-10);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.em-content-grid-text .em-c-g-card h3,
.em-content-grid-text .em-c-g-card p {
    color: var(--text-white);
}

.em-content-grid-text .em-c-g-card p {
    font-weight: var(--fw-400);
}

.em-content-grid .section-title-dark {
    text-align: center;
}

.em-c-g-img {
    border-radius: var(--br-10);
    overflow: hidden;
}

.em-service-content-part {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    column-gap: 50px;
    row-gap: 30px;
}

.em-service-content-part .part-left h4,
.em-service-content-part .part-right h4 {
    font-weight: var(--fw-600);
}

.em-service-content-part .part-left h4 {
    color: var(--c-primary-2);
}

.em-service-content-part .part-left ul li {
    color: var(--c-primary-2);
    font-size: 18px;
}

.em-service-content-part .part-right h4 {
    color: var(--c-primary-2);
}

.em-service-content-part .part-right ul li {
    color: var(--c-primary-2);
    font-size: 18px;
}

.em-b-note-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.em-b-note-wrapper p {
    font-size: 24px;
    font-weight: var(--fw-600);
}

.em-content-section p {
    color: var(--c-primary-2);
}

.em-content-section .section-title-light {
    gap: 13px;
    margin-bottom: 0px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}



/* .em-steps-section .em-steps-inner::before {
    position: absolute;
    content: '';
    top: -65%;
    right: -10%;
    width: 795px;

    height: 800px;
    background-image: url(../images/logo-white.png);
    background-repeat: no-repeat;
    opacity: 0.1;
    background-position: center;
    background-size: contain;
    z-index: 1;
    transform: rotate(-180deg);
} */

.em-steps-inner {
    position: relative;
    padding: 75px;
    background-color: var(--c-primary-2);
    row-gap: 30px;
    border-radius: var(--br-10);
}

.em-steps-gallery div {
    border-radius: var(--br-10);
    overflow: hidden;
}

.em-video-inner p {
    color: var(--c-primary-2);
}

.em-step-video-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 50px;
    row-gap: 50px;

}

.em-video-inner {
    padding: 30px;
    background: #a6bdc6;
    border-radius: var(--br-10);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 0;
    width: 100%;
}

.em-video-inner iframe {
    height: 100%;
    border-radius: var(--br-10);
}






.em-steps-gallery img {
    width: 100%;
}

.em-steps-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    column-gap: 15px;
    row-gap: 15px;
}

.step-div p {
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.step-div ul li {
    color: var(--text-white);
    gap: 13px;
    margin-bottom: 12px;
    list-style: disc;


    line-height: 1.55em;
    font-size: var(--p-text);

    font-weight: var(--fw-500);
}


.step-div ul li a,
.step-div p a {
    color: var(--c-primary-1);
    word-break: break-all;
}

.step-div ul {
    margin-top: 14px;

}

.step-div {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 39px;
}

.em-test-re .section-title-dark {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}


.em-virtual-form .em-virtual-consult-inner div input[type="submit"] {
    margin-top: 22px;
    display: inline-block;
    color: var(--text-white);
    font-size: var(--fs-15);
    font-weight: var(--fw-600);
    line-height: 43px;
    height: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 28px;
    width: max-content;
    background: var(--c-primary-2);
    border: 0;
    outline: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all .3s ease-in-out;
    border-radius: 5px;
    overflow: hidden;
    border: 0px;
    margin-bottom: 0px;
}



.em-virtual-form .em-virtual-consult-inner div:last-child {
    margin-bottom: 0px;
}


.step-div h3 {
    color: var(--text-white);
    ;
}

.em-virtual-form .em-virtual-consult-inner div label {
    font-size: var(--p-text);
    color: var(--c-primary-2);
    font-weight: var(--fw-600);

}

legend {
    font-size: var(--p-text);
    color: var(--c-primary-2);
    font-weight: var(--fw-600);
}

.em-virtual-form .em-virtual-consult-inner div input:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--c-primary-1);
}

.em-virtual-form .em-virtual-consult-inner div input {
    height: 42px;
    border-radius: 6px;
    border: 1px solid var(--c-primary-2);
    padding: 6px 11px;
    background-color: var(--bg-white);
    width: 100%;
}


.em-virtual-form .em-virtual-consult-inner div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
    position: relative;
}

.em-virtual-form .em-virtual-consult-inner {
    padding: 50px;
    background: #a7bdc6;
    border-radius: var(--br-10);

    position: relative;


}

.em-form-imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.em-form-imgs {
    border-radius: var(--br-10);
    overflow: hidden;
}

.em-form-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 50px;
    row-gap: 50px;
}

.step-div hr {
    color: var(--bg-white);
}

.em-service-img-grid-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    column-gap: 30px;
    row-gap: 30px;
    margin-top: 30px;
}

.em-service-img-grid-inner .em-sr-im-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.em-service-img-grid-inner .em-sr-im-card h4 {
    color: var(--c-primary-2);
    font-weight: var(--fw-600);
}

.em-service-img-grid-inner ul li {
    font-size: var(--p-text);
    font-weight: var(--fw-500);
    color: var(--c-primary-2);
}

.em-slr-section .em-title-slr-wrapper .section-title-dark {
    text-align: center;
}


.em-contact-sec .section-title-dark {
    text-align: center;
}

.em-con-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 50px;
    row-gap: 30px;
}

.em-con-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background-color: var(--c-primary-1);
    padding: 30px;
    border-radius: var(--br-10);
    box-shadow: 0 0 24px rgba(0, 0, 0, .15);
}

.em-con-left .em-left-title h3 {
    font-size: 32px;
    font-weight: var(--fw-600);
    color: var(--c-primary-2);
}

.em-location-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.em-con-right {
    box-shadow: 0 0 24px rgba(0, 0, 0, .15);
}

.em-con-right iframe {
    width: 100%;
    height: 100%;
}

.em-faq-whitemore-faq-section-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.em-location-title h2 {
    font-size: 38px;
    font-weight: var(--fw-600);
    color: var(--c-primary-2);
}

.em-con-left .em-con-info ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.em-con-left .em-con-info ul li {
    display: flex;
    gap: 10px;
    align-items: flex-start;

}

.em-con-left .em-con-info ul li i {
    font-size: 20px;
    color: var(--c-primary-2);
    margin-top: 3px;
}

.em-con-left .em-con-info ul li a,
.em-con-left .em-con-info ul li span {
    font-size: 20px;
    color: var(--text-white);
    font-weight: var(--fw-600);
    transition: all .3s ease;
}

.em-con-left .em-con-info ul li a:hover {
    color: var(--c-green);
    transition: all .3s ease;
}

.em-con-hours {
    display: flex;
    gap: 30px;
}

.em-con-hours ul {
    list-style: none;
    /* padding-left: 0; */
    margin-bottom: 0;
}

.em-con-hours ul:nth-child(1) li {
    font-size: 20px;
    font-weight: var(--fw-600);
    color: var(--text-white);
}

.em-con-hours ul:nth-child(2) li {
    font-size: 20px;
    font-weight: var(--fw-500);
    color: var(--text-white);
}

.em-con-right {
    background-color: var(--c-primary-2);
    border-radius: var(--br-10);
    overflow: hidden;
}

.em-con-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.em-refer-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 50px;
    row-gap: 50px;
}

.em-refer-wrapper .section-title-dark {
    margin-bottom: 0;
}

.em-refer-wrapper .em-refer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.em-refer-left .em-refer-contact {
    background-color: var(--c-primary-2);
    width: max-content;
    padding: 20px;
    box-shadow: 0 0 24px rgba(0, 0, 0, .15);
    border-radius: var(--br-10);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.em-refer-left .em-refer-contact h3 {
    color: var(--text-white);
    font-weight: var(--fw-600);
}

.em-refer-left .em-refer-contact a {
    color: var(--c-primary-1);
    font-size: 28px;
    font-weight: var(--fw-600);
    transition: all .3s ease;
}

.em-refer-left .em-refer-contact a:hover {
    color: var(--text-white);
    transition: all .3s ease;
}


.em-m-wrapper {
    background-image: linear-gradient(135deg, rgba(16, 42, 67, .95) 23%, rgba(56, 190, 201, .75) 94%);
    padding: 50px 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: var(--br-10);
    box-shadow: 0 0 24px rgba(0, 0, 0, .15);
}

.em-m-wrapper h3 {
    color: var(--text-white);
    font-weight: var(--fw-600);
}

.em-m-wrapper p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    color: var(--text-white);
}

.em-f-calc-wrapper {
    background-color: var(--c-primary-2);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}


.header-right-section,
.header-brand-container {
    padding: 0;
}


/* Range Slider Start */



/* range 2 */

/* Reset range completely */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
}

.range-input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    cursor: pointer;
    outline: none;
    border-radius: 15px;
    height: 6px;
    background: var(--bg-light-blue);
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;

    height: 20px;
    width: 20px;
    background-color: var(--c-green);
    border-radius: 50%;
    border: none;

    /* 🚨 IMPORTANT */
    font-size: 0 !important;
    color: transparent !important;
    background-image: none !important;
    text-indent: -9999px;

    transition: .2s ease-in-out;
}

.range-input::-moz-range-thumb {
    -moz-appearance: none !important;
    appearance: none !important;

    height: 20px;
    width: 20px;
    background-color: var(--c-green);
    border-radius: 50%;
    border: none;

    background-image: none !important;
    /* removes ↔ */
    box-shadow: none;
    font-size: 0 !important;
    /* 🔥 kills arrow glyph */
    color: transparent !important;

    transition: .2s ease-in-out;
}

.range-input::-moz-focus-outer {
    border: 0;
}


.range-input::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 10px rgba(0, 255, 21, 0.1);
}

.range-input:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px rgba(0, 255, 21, 0.1);
}

.range-input:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px rgba(0, 255, 21, 0.1);
}

.range-input::-moz-range-thumb:hover {
    box-shadow: 0 0 0 10px rgba(0, 255, 21, 0.1);
}

.range-input:active::-moz-range-thumb {
    box-shadow: 0 0 0 13px rgba(0, 255, 21, 0.1);
}

.range-input:focus::-moz-range-thumb {
    box-shadow: 0 0 0 13px rgba(0, 255, 21, 0.1);
}

.value2 {
    font-size: 26px;
    width: 50px;
    text-align: center;
}

.range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.em-f-calc-wrapper {
    padding: 50px 30px;
}

.em-is-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.em-is-card h4 {
    color: var(--text-white);
    font-weight: var(--fw-600);
}

.em-is-card .range .value2 {
    background-color: var(--c-primary-1);
    width: auto;
    flex-shrink: 0;
    padding: 5px 10px;
    font-size: 18px;
    color: var(--text-white);
    font-weight: var(--fw-500);
    border-radius: 5px;
}

.em-is-card span {
    color: var(--text-white);
    font-size: 14px;
}

.em-final-amount {
    padding-top: 20px;
}

.em-final-amount span {
    background-color: var(--c-primary-1);
    padding: 10px 20px;
    color: var(--text-white);
    border-radius: 5px;
    font-size: 22px;
    font-weight: var(--fw-600);
}


/* Range Slider End */


/* ================================================================================================== */


.em-slr-content ul li {
    line-height: 1.55em;
    font-size: var(--p-text);
    color: var(--c-primary-2);
    font-weight: var(--fw-500);
}

.Center-text {
    text-align: center;
}

.em-slr-content ul li a {
    color: var(--c-primary-1);
}

.No-bg {
    background-color: transparent;
}

.em-service-content-text ul li {
    line-height: 1.55em;
    font-size: var(--p-text);
    color: var(--c-primary-2);
    font-weight: var(--fw-500);
}

.section-title-dark ul li {
    line-height: 1.55em;
    font-size: var(--p-text);
    color: var(--c-primary-2);
    font-weight: var(--fw-500);
}

.em-service-content-text ul li a {
    color: var(--c-primary-1);
}

.review-section {
    text-align: center;
}

.review-section .em-service-content-text {
    margin-bottom: 55px;
}

.gform-theme--foundation .gform_fields {
    row-gap: 23px !important;
}

.em-contact-form.light-form {
    padding: 50px;
    background: #a7bdc6;
    border-radius: var(--br-10);
    position: relative;
}

.em-con-right.light-form {
    padding: 50px;
    background: #a7bdc6;
    border-radius: var(--br-10);
    position: relative;
}


.em-con-right.light-form label {
    font-size: var(--p-text);
    color: var(--c-primary-2);
    font-weight: var(--fw-600);
}

.em-contact-form.light-form input:not([type="checkbox"]) {
    height: 42px !important;
    border-radius: 6px !important;
    border: 1px solid var(--c-primary-2) !important;
    padding: 6px 11px !important;
    background-color: var(--bg-white) !important;
    width: 100%;
}

.em-con-right.light-form textarea {
    border-radius: 6px !important;
    border: 1px solid var(--c-primary-2) !important;
    padding: 6px 11px !important;
    background-color: var(--bg-white) !important;
    width: 100%;
}

.light-form .gform_title {
    display: none;
}

.em-contact-form.light-form label {
    font-size: var(--p-text);
    color: var(--c-primary-2);
    font-weight: var(--fw-600);
}

.em-contact-form.light-form input:not([type="checkbox"]),
.em-contact-form.light-form select {
    height: 42px !important;
    border-radius: 6px !important;
    border: 1px solid var(--c-primary-2) !important;
    padding: 2px 11px !important;
    background-color: var(--bg-white) !important;
    width: 100%;
}

.light-form input {
    border-radius: 6px !important;
}

.light-form textarea:focus {
    border-color: var(--c-primary-1) !important;
}

.em-contact-form.light-form textarea {
    border-radius: 6px !important;
    border: 1px solid var(--c-primary-2) !important;
    padding: 6px 11px !important;
    background-color: var(--bg-white) !important;
    width: 100%;
}

.gfield--type-html {
    color: var(--c-primary-2) !important;
}

select:focus {
    box-shadow: none !important;
    border-color: var(--c-primary-1) !important;
}

.gform-theme--foundation .gfield input:focus,
.gform-theme--foundation .gfield textarea:focus .gform-theme--foundation .gfield select:focus {
    box-shadow: none !important;
    border-color: var(--c-primary-1) !important;
}

.gform_footer input[type="submit"] {
    margin-top: 22px !important;
    display: inline-block;
    color: var(--text-white);
    font-size: var(--fs-15) !important;
    font-weight: var(--fw-600);
    line-height: 43px !important;
    height: 50px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 0 28px !important;
    width: max-content;
    background-color: var(--c-primary-2) !important;
    background: var(--c-primary-2) !important;
    border: 0;
    outline: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all .3s ease-in-out;
    border-radius: 5px !important;
    overflow: hidden;
    border: 0px;
    margin-bottom: 0px;
}

.em-404-page-section {
    text-align: center;
}

.em-404-page-section h2 {
    text-align: center;
}

.em-contact-form.light-form input[type="submit"]:focus {
    border-color: var(--c-primary-1) !important;
    box-shadow: none !important;
}

input[type="submit"]:focus {
    border-color: var(--c-primary-1) !important;
    box-shadow: none !important;
}

.em-contact-form.light-form input[type="submit"] {
    margin-top: 22px !important;
    display: inline-block;
    color: var(--text-white);
    font-size: var(--fs-15) !important;
    font-weight: var(--fw-600);
    line-height: 43px !important;
    height: 50px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 0 28px !important;
    width: max-content;
    background-color: var(--c-primary-2) !important;
    background: var(--c-primary-2) !important;
    border: 0;
    outline: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all .3s ease-in-out;
    border-radius: 5px !important;
    overflow: hidden;
    border: 0px;
    margin-bottom: 0px;
}

.gform_heading {
    display: none !important;
}

.em-virtual-form .em-virtual-consult-inner div {
    margin-bottom: 0px !important;
}

.bg-gradient.bg-light-gray {
    background-color: var(--bg-light-gray);

    background-image: var(--bg-light-gray) !important;
}

.em-virtual-form .em-virtual-consult-inner div input {
    padding: 2px 11px !important;
}

.em-virtual-form .em-virtual-consult-inner div textarea {
    border-radius: 6px;
}



.em-top-inner-banner-sec.tag-category-banner::after {
    position: absolute;
    content: '';
    inset: 0;
    background-color: #284652;
}

.em-top-inner-banner-sec.tag-category-banner {
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 220px 0px 96px 0px;

}

.em-message-section {
    color: var(--text-white);
}


.em-message-section h1,
.em-message-section h2,
.em-message-section h3,
.em-message-section h4,
.em-message-section h5 {
    color: var(--text-white);
}

.details-tag-url h3 {
    margin-bottom: 15px;
    font-size: var(--text-32);
}


.details-tag-url {
    width: 100%;
}

.details-tag-url .recent-post {
    width: 100%;
}

.details-tag-url ul {
    width: 100%;
    padding-left: 0px;
    margin-bottom: 30px;
}

.details-tag-url ul li {
    list-style: none;
    padding-left: 0px;
    width: 100%;
    font-size: 23px;
    line-height: var(--l-1-55);
    font-weight: var(--fw-400);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--c-primary-1);

}

.tag-inner {
    display: flex;
    flex-flow: row wrap;
    gap: 14px;

}

.tag-inner a {

    display: inline-block;
    color: var(--text-white);
    font-size: var(--fs-15);
    font-weight: var(--fw-600);
    line-height: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 20px;
    width: max-content;
    background: var(--c-primary-1);
    border: 0;
    outline: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all .3s ease-in-out;
    border-radius: 5px;
    overflow: hidden;
}


.ry-blog-categories {
    display: flex;
    flex-flow: row wrap;
    gap: 10px;


}

.ry-blog-categories a {
    font-size: var(--p-text);
    color: var(--c-primary-1);
    line-height: var(--l-1-1);
    letter-spacing: 0.5px;
    font-weight: var(--fw-700);
}

.refer-about-form-section .em-refer-wrapper {
    flex-direction: column;
    display: flex;
}

.refer-about-form-section .em-contact-form {
    width: 70%;
    margin: 0 auto;
}


.refer-about-form-section .em-refer-wrapper .em-refer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    text-align: center;
}


.refer-about-form-section .em-refer-left .em-refer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    margin: 0 auto;
}

.em-refer-friend-form-section-wrapper .em-contact-form {
    width: 64%;
}

.em-refer-friend-form-section .gform_fields {
    align-items: end;
}




.em-pagination a,
.em-pagination span {
    display: inline-block;
    color: var(--text-white);
    font-size: var(--fs-15);
    font-weight: var(--fw-600);
    line-height: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 20px;
    width: max-content;
    background: var(--c-primary-1);
    border: 0;
    outline: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all .3s ease-in-out;
    border-radius: 5px;
    overflow: hidden;
}


.em-pagination a::before,
.em-pagination span::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    background-color: var(--c-primary-2);
    width: 100%;
    height: 0%;
    z-index: -1;
    transition: all .3s ease-in-out;
}

.em-pagination {
    display: flex;
    gap: 10px;
    flex-flow: row wrap;
    justify-content: center;
    margin-top: 63px;
}

.em-pagination span.current::before {
    height: 100%;
    transition: all .3s ease-in-out;
}

.em-pagination a:hover::before,
.em-pagination span:hover::before {
    height: 100%;
    transition: all .3s ease-in-out;
}

.blog-details-prev-next-button .prev-post {
    margin-right: 0;
    justify-content: end;
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
}

.blog-details-prev-next-button {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    padding: 34px;
}


.blog-details-prev-next-button .next-post {

    margin-right: 0;
    justify-content: end;
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
}

.free-consultation-section .section-title-dark {
    max-width: 978px;
    text-align: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 46px;
}




.free-consultation-section .section-title-dark,
.free-consultation-section .em-service-content-text,
.free-consultation-section .em-ser-c-btn {
    max-width: 978px;
    text-align: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;

}

.free-consultation-section .section-title-dark {
    margin-bottom: 46px;
}

.custom-title-padding .section-title-dark{
    margin-bottom: 0;
}

.em-service-content-sec .em-ser-c-btn{
    margin-top: 46px;
}

.em-con-right iframe {

    border: 0;
    min-height: 493px;
}


.forbanner-section {
    margin-top: 120px;
}


.gfield_checkbox div.gchoice {
    width: 42%;
}

.gfield_checkbox {

    display: flex;
    flex-direction: row !important;
    flex-flow: row wrap !important;
}



/* Blog Section Style Start */
.el-blog {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.el-blog-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 40px;
}

.el-blog-img {
    width: 100%;
    height: 100%;
    border-radius: var(--br-10);
    overflow: hidden;
    filter: brightness(0.7);
}

.el-blog img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.el-blog-content {
    height: auto;
    position: absolute;
    bottom: -60px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all ease 0.6s;
}

.el-blog-content h3 {
    font-size: var(--text-32);
    color: var(--white);
    text-wrap: unset;
}

.el-blog-content span {
    width: max-content;
    text-transform: capitalize;
    font-size: var(--text-p);
    color: var(--white);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--white);
}

.el-blog:hover .el-blog-content {
    bottom: 0;
}

.el-blog-detail-pagination {
    margin-top: 50px;
}

/* Blog Section Style End */

.em-blog-detail-wrapper .blog-inner-content img {
    max-width: auto;
    width: auto;
    height: auto;
}

.gform_drop_area button {
        background: var(--c-primary-2) !important;
        letter-spacing: 2px !important;
        text-transform: uppercase !important;
    
}

.gform_drop_area button:focus {
    box-shadow: none !important;
}
.gform_drop_area .gform_drop_instructions{
    
}

.gform_drop_area{
    padding: 8px !important;

        border-radius: 6px !important;
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .gform_drop_area::before{
    color: var(--c-primary-2) !important;
}
.em-treatment-main-wrapper .em-treat-wrapper:last-child {
    margin-bottom: 0px;
}
.vide-outer-div .em-slr-wrapper {
	display: flex;
}
.vide-outer-div .em-slr-wrapper {
    display: flex;
    flex-direction: column;
}
.vide-outer-div .em-slr-left video {
    border-radius: 15px;
    border: 1px solid #f7f9fb;
}