@import url('https://fonts.googleapis.com/css2?family=Sanchez:ital@0;1&display=swap');

/* font weight = 700 */
@font-face {
    font-family: "Creato Display";
    src: url(../fonts/CreatoDisplay/CreatoDisplay-Bold.otf);
    font-weight: 700;
}

/* font weight = 500 */
@font-face {
    font-family: "Creato Display";
    src: url(../fonts/CreatoDisplay/CreatoDisplay-Medium.otf);
    font-weight: 500;
}

/* font weight = 400 */
@font-face {
    font-family: "Creato Display";
    src: url(../fonts/CreatoDisplay/CreatoDisplay-Regular.otf);
    font-weight: 400;
}

/* font weight = 300 */
@font-face {
    font-family: "Creato Display";
    src: url(../fonts/CreatoDisplay/CreatoDisplay-Light.otf);
    font-weight: 300;
}

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

*:focus,
*:focus-visible {
    outline: none;
}

:root {

    --transition-05s: all ease-in-out 0.5s;

    --font-sanchez: "Sanchez", sans-serif;

    --main-color: #618D90;
    /* rgb(0, 174, 239, 1); */
    --black-color: #000000;
    /* rgb(0, 0, 0); */
    --white-color: #ffffff;
    /* rgb(255, 255, 255); */

}

/* html {
    scroll-padding-top: 220px;
} */

body {
    font-family: "Creato Display", sans-serif;
    scroll-behavior: smooth;
}

ul,
ol {
    margin: 0%;
    padding: 0%;
}

a {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

.row {
    gap: 24px 0px;
}

/*<======================= Common Css ===============>*/
.common-section {
    padding: 80px 0px;
}

.common-head {
    text-align: center;
    width: 50%;
    margin: auto;
    margin-bottom: 40px;
}

.common-head h3 {
    font-family: var(--font-sanchez);
    color: #4F4F4F;
    font-size: 48px;
    line-height: 52px;
    font-weight: 700;
    text-transform: capitalize;
}

.common-head p {
    color: #4F4F4F;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 28px;
}

.common-btn {
    background-color: var(--main-color);
    border-radius: 40px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-05s);
    color: var(--white-color);
    position: relative;
    border: 1px solid transparent;
    text-align: center;
    display: inline-block;
}

.common-btn:hover {
    color: var(--main-color);
    border: 1px solid #618D90;
    background-color: transparent;
}

.common-btn2 {
    background-color: transparent;
    border-radius: 40px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-05s);
    color: var(--main-color);
    position: relative;
    border: 1px solid #618D90;
    display: inline-block;
}

.common-btn2:hover {
    color: var(--white-color);
    border: 1px solid transparent;
    background-color: var(--main-color);
}


/************************************ Header Section **************************************/
.header-section {
    position: relative;
    width: 100%;
    height: max-content;
    z-index: 10;
    background: var(--white-color);
}

.modal {
    z-index: 9999 !important;
}

.modal-backdrop {
    z-index: 9998 !important;
}

.header-top {
    background: var(--main-color);
    text-align: center;
    padding: 10px 0px;
}

.header-top p {
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    z-index: 9999;
    width: 100%;
    padding: 10px 0px;
    /* box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.75); */
}

.navbar.header-fixed {
    position: fixed;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.95);
    /* background: rgba(14, 13, 14, 0.8); */
    transition: all ease-in-out 0.2s;
    backdrop-filter: blur(5px);
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    height: 90px;
}

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

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #F8F8F8;
    border-radius: 40px;
    padding: 5px 15px;
}

.navbar-nav .nav-item a {
    font-weight: 700;
    font-size: 15px;
    color: #4F4F4F;
    text-transform: capitalize;
    background: transparent;
    border-radius: 40px;
    transition: var(--transition-05s);
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item .active {
    background: var(--white-color);
    color: #4F4F4F;
    padding: 5px 20px;
}


.navbar-toggler-icon {
    filter: invert(0);
    border-color: #fff;
}

.head-contact {
    display: flex;
    align-items: center;
    gap: 5px;
}

.head-contact img {
    height: 35px;
    width: 35px;
    object-fit: contain;
}

.head-contact .head-contact-info p {
    margin-bottom: 0px;
}

.head-contact .head-contact-info p.email {
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 400;
    color: #54585a;
}

.head-contact .head-contact-info p.call {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    color: #13181f;
}



/******************************************* Banner Section ***********************************/
.banner-section {
    position: relative;

}

.inr-banner-section {
    background: no-repeat center center / cover;
    position: relative;
}

.inr-banner-section>* {
    position: relative;
    z-index: 1;
}

.inr-banner-section::after {
    content: '';
    position: absolute;
    inset: 0%;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(55, 103, 107, 0.5);
}

.banner-section .item {
    background: no-repeat center center / cover;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.bnr-img-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    min-height: 85dvh;
    height: 100%;
    width: 100%;
}

.bnr-img-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: var(--transition-05s);
}

.banner-section .item:hover .bnr-img-bg img {
    transform: scale(1.2);
}

.banner-left-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    min-height: 85dvh;
}

.banner-left-inrbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 400px;
}

.banner-left-box h1 {
    font-family: var(--font-sanchez);
    color: #222222;
    font-weight: 400;
    font-size: 80px;
    line-height: 74px;
    text-transform: capitalize;
}

.banner-left-inrbox h1 {
    color: var(--white-color);
    font-weight: 500;
    font-size: 48px;
    text-transform: capitalize;
    text-align: center;
}

.banner-left-box p {
    color: #4F4F4F;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
}

.banner-left-box.second-slide h5 {
    color: rgba(var(--white-color), 1);
}

.banner-left-box.second-slide p {
    color: rgba(var(--white-color), 1);
}

.banner-right-box {
    width: 100%;
    height: 610px;
}

.banner-right-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner-right-inrbox {
    width: 100%;
    height: 400px;
    padding: 20px 0px;

}

.banner-right-inrbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



/********************************** About Section ************************/
.about-section {
    background: #37676B no-repeat center center / cover;
    position: relative;
}

.about-side-img {
    position: absolute;
    top: 50px;
    right: 0px;
}

.about-right-small-img {
    position: absolute;
    bottom: 200px;
    right: 200px;
    width: auto;
    height: 240px;
}

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

.about-left-img {
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
}

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

.about-right-box {
    width: 70%;
    padding-left: 40px;
}

.about-right-box span {
    background: var(--white-color);
    border-radius: 40px;
    color: #4F4F4F;
    text-transform: uppercase;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
}

.about-right-box h3 {
    font-family: var(--font-sanchez);
    /* padding: 20px 0px; */
    margin: 30px 0px;
    font-size: 48px;
    line-height: 52px;
    font-weight: 400;
    color: var(--white-color);
}

.about-right-box p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #D1E5E6;
}

.abt-right-list {
    border-top: 1px solid rgba(226, 223, 223, 0.3);
    padding-top: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.abt-right-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 35px;
    color: var(--white-color);
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}

.abt-right-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 free';
    font-weight: 600;
    position: absolute;
    left: 1px;
    top: 0px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white-color);
    color: #37676B;
    font-size: 14px;
}

.abt-learnMore-btn {
    border: 1px solid #618D90;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 40px;
    transition: var(--transition-05s);
    display: inline-block;
    margin-top: 20px;
}

.abt-learnMore-btn:hover {
    color: var(--main-color);
    background: var(--white-color);
}

/******************************** Services Section **************************************/
.services-section {
    position: relative;
}

.service-left-side-img {
    position: absolute;
    left: 0px;
    top: 80px;
}

.service-right-side-img {
    position: absolute;
    right: 0px;
    bottom: 80px;
}

.service-left-side-img,
.service-right-side-img {
    height: 120px;
}

.service-left-side-img img,
.service-right-side-img img {
    height: 100%;
    object-fit: cover;
}

.services-head {
    width: 40%;
    text-align: center;
    margin: auto;
    margin-bottom: 40px;
}

.services-head span {
    background: #EEEEEE;
    color: #4F4F4F;
    border-radius: 40px;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.services-head h3 {
    font-family: var(--font-sanchez);
    font-size: 48px;
    line-height: 52px;
    font-weight: 400;
    margin: 10px 0px;
}

.services-box {
    border: 1px solid #D5D5D5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* gap: 10px; */
    padding: 30px 20px;
    border-radius: 20px;
    background: transparent;
    transition: var(--transition-05s);
    min-height: 370px;
    height: 100%;
}

.services-box h5 {
    font-size: 24px;
    line-height: 40px;
    font-weight: 700;
    color: #4F4F4F;
    margin-top: 40px;
}

.services-box p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #4F4F4F;
    margin-bottom: 20px;
}

.services-box:hover {
    background: #37676B;
}

.services-img,
.services-hover-img {
    height: 70px;
}

.services-img img,
.services-hover-img img {
    height: 100%;
    object-fit: contain;
}

.services-img-hover {
    display: none;
}

.services-box:hover .services-img {
    display: none;
}

.services-box:hover .services-img-hover {
    display: block;
}

.services-box:hover h5,
.services-box:hover p {
    color: var(--white-color);
}

.services-box .common-btn:hover {
    background: transparent;
    color: var(--white-color);
}

.service-inr-img {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

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

.requestAppointment-section {
    padding: 40px 0px;
}

.requestAppointment-form-box h3 {
    font-family: var(--font-sanchez);
    font-size: 42px;
    font-weight: 700;
    color: #4F4F4F;
    text-align: center;
    margin-bottom: 40px;
}

.requestAppointment-form-box form {
    background-color: #ECF7F8;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 40px;
    padding: 40px;
}

.requestAppointment-input-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.requestAppointment-input-box label {
    color: #4F4F4F;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.requestAppointment-input-box label::after {
    content: '*';
    position: relative;
    /* width: 100%; */
    height: 100%;
    display: block;
    color: #ff0000;
    font-size: 14px;
}

.requestAppointment-input-box input,
.requestAppointment-input-box select,
.requestAppointment-input-box textarea {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
}

.requestAppointment-input-box input,
.requestAppointment-input-box select,
.requestAppointment-input-box textarea {
    color: #a39d9d;
}

/********************************* Personal Bios Section ********************************/
.personalBios-section {
    position: relative;
}

.personalBios-inr .personalBios-left-box {
    width: 100%;
}

.personalBios-left-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 80%;
    padding-left: 120px;
    gap: 10px;
}

.personalBios-left-box span {
    color: #4F4F4F;
    border: 1px solid #4F4F4F;
    padding: 5px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.personalBios-left-box h3 {
    font-family: var(--font-sanchez);
    color: #4F4F4F;
    font-size: 48px;
    line-height: 52px;
    font-weight: 400;
    text-transform: capitalize;
    margin-top: 10px;
}

.personalBios-left-box p {
    color: #4F4F4F;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.personalBios-right-box {
    margin-bottom: -80px;
    margin-left: 40px;
    height: 540px;
    position: relative;
    z-index: 1;
}

.personalBios-right-box::after {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 275px;
    height: 100%;
    background: url(../media/images/common-side-img.png) no-repeat;
}

.personalBios-right-box::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 275px;
    height: 215px;
    background: url(../media/images/common-side-img.png) no-repeat;
}

.personalBios-right-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/******************************** Plans Section ****************************************/
.plans-section {
    position: relative;
}

.plans-side-img {
    position: absolute;
    left: 0px;
    top: 80px;
    height: 90px;
}

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

.plans-head {
    text-align: center;
    margin-bottom: 40px;
}

.plans-head span {
    background: #EEEEEE;
    color: #4F4F4F;
    border-radius: 40px;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.plans-head h3 {
    font-family: var(--font-sanchez);
    font-size: 48px;
    line-height: 52px;
    font-weight: 400;
    margin: 10px 0px;
}

.plans-box {
    border: 1px solid #D5D5D5;
    min-height: 700px;
    height: 100%;
    border-radius: 20px;
}

.plans-box-head {
    padding: 20px;
    border-bottom: 1px solid #D5D5D5;
}

.plans-box-head .common-btn {
    width: 100%;
    margin-top: 10px;
}

.plans-box-head h5 {
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
    color: #4F4F4F;
}

.plans-box-lwr {
    padding: 20px;
}

.plans-box-lwr h5 {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    color: #4F4F4F;
    margin-bottom: 20px;
}

.plans-box-lwr ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.plans-box-lwr ul li {
    color: #4F4F4F;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-left: 35px;
    position: relative;
}

.plans-box-lwr ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 free';
    font-weight: 600;
    position: absolute;
    left: 1px;
    top: 0px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F2F2F2;
    color: #37676B;
    font-size: 14px;
}

/**************************** Online Health Access Banner Section ****************************/
.ohabnr-section {
    position: relative;
    min-height: 400px;
    height: 100%;
    background: #37676B no-repeat center center / cover;
}

.ohabnr-side-img {
    height: 135px;
    position: absolute;
    right: 0px;
    top: 120px;
}

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

.ohabnr-right-img {
    position: absolute;
    right: 120px;
    bottom: 0px;
    height: auto;
}

.ohabnr-right-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ohabnr-left-img {
    position: absolute;
    left: 50px;
    bottom: 0px;
    height: auto;
}

.ohabnr-left-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ohabnr-content-box {
    height: 400px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.ohabnr-content-box h3 {
    font-family: var(--font-sanchez);
    font-size: 48px;
    line-height: 52px;
    font-weight: 400;
    color: var(--white-color);
}

.ohabnr-content-box p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #D1E5E6;
}

.ohabnr-content-box h5 {
    font-size: 24px;
    line-height: 38px;
    font-weight: 700;
    color: var(--white-color);
}

.ohabnr-download {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ohabnr-download-box {
    height: 60px;
}

.ohabnr-download-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/********************************** Patient Portal Section ******************************/
.patientPortal-section {
    position: relative;
    background: no-repeat center center / cover;
}

.patientPortal-left-head {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(81, 79, 79, 0.3);
}

.patientPortal-left-box {
    width: 82%;
}

.patientPortal-left-head span {
    background: var(--white-color);
    border-radius: 40px;
    border: 1px solid #4F4F4F;
    padding: 5px 20px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}

.patientPortal-left-head h3 {
    font-family: var(--font-sanchez);
    margin: 30px 0px 20px;
    font-size: 48px;
    font-weight: 400;
    line-height: 52px;
    color: #4F4F4F;
}

.patientPortal-left-head p {
    color: #4F4F4F;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0;
}

.patientPortal-left-lwr {
    padding-top: 20px;
}

.patientPortal-left-lwr h5 {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #4F4F4F;
    margin-bottom: 20px;
}

.patientPortal-left-lwr .patientPortal-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.patientPortal-left-lwr .patientPortal-list li {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #4F4F4F;
    padding-left: 35px;
}

.patientPortal-left-lwr .patientPortal-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 free';
    font-weight: 600;
    position: absolute;
    left: 1px;
    top: 0px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F2F2F2;
    color: #37676B;
    font-size: 14px;
}

.patientPortal-right-img {
    height: 550px;
    width: 100%;
    position: relative;
    z-index: 1;

}

.patientPortal-right-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.patientPortal-right-img::after {
    content: '';
    position: absolute;
    display: block;
    width: 90%;
    height: 95%;
    border-radius: 20px;
    top: -40px;
    right: 0px;
    background: #F6F6F6;
}

.patientPortal-right-img::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    top: -20px;
    left: -100px;
    background: url(../media/images/common-side-img.png) no-repeat;
}

.faq-section {
    background: #f9fafb;
}

.faq-head .faq-title {
    font-family: var(--font-sanchez);
    font-size: 42px;
    line-height: 52px;
    font-weight: 700;
    color: #4F4F4F;
}

.faq-head .faq-subtitle {
    font-size: 16px;
    line-height: 24px;
    color: #4F4F4F;
    margin-top: 8px;
}

/* Accordion styling */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-button {
    font-weight: 500;
    padding: 18px 22px;
    border-radius: 14px 14px 0px 0px;
    background: #ffffff;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--main-color);
    color: #fff;
}

.faq-accordion .accordion-button::after {
    filter: brightness(0);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(10);
}

.faq-accordion .accordion-body {
    padding: 20px 22px;
    background: #ffffff;
    color: #4b5563;
    line-height: 1.7;
}

/***************************************** Contact Us Page *******************************/
.contact-card {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 1px solid #D1D1D1;
    border-radius: 10px;
    gap: 20px;
    min-height: 150px;
    padding: 20px;
    transition: var(--transition-05s);
    /* padding: 60px 20px; */
}

.contact-card:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.contact-card:hover i {
    color: var(--white-color);
}

.contact-card i {
    --ehw-bg: 50px;
    width: var(--ehw-bg);
    height: var(--ehw-bg);
    font-size: 25px;
    background: var(--main-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.contact-name {
    width: 70%;
}

.contact-card .contact-name h4 {
    font-family: var(--font-sanchez);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0px;
}

.contact-card .contact-name p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
}

.iframe-box {
    width: 100%;
    height: 480px;
    border: 1px solid rgba(var(--second-color), 1);
    padding: 5px;
    border-radius: 20px;
}

.iframe-box iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.contact-form-head {
    text-align: center;
    padding: 20px 0px;
}

.contact-form-head h3 {
    font-size: 54px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-form-head p {
    font-size: 24px;
    font-weight: 400;
}

.contact-form {
    /* box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.75); */
    border: 1px solid #D1D1D1;
    padding: 20px;
    border-radius: 20px;
}

.form-contact-box input::placeholder,
.form-contact-box textarea::placeholder {
    font-weight: 400;
}

.form-contact-box button {
    width: 100%;
}

.form-contact-box select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    color: #4F4F4F;
}

.form-contact-box option:hover {
    background: var(--main-color) !important;
}

/******************************** Footer Section *********************************************/
.footer-section {
    background: #ECF7F8;
}

.footer-logo {
    height: 42px;
    display: inline-block;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* margin-top: 20px; */
}

.footer-logo-box p {
    margin-top: 20px;
    color: #d0d8e1;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    width: 80%;
    padding: 20px 0px;
}

.footer-top {
    padding: 30px 0px;
}

.footer-follow-list {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-follow-list li a {
    color: rgba(var(--white-color), 1);
}

.footer-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.footer-list li a i {
    font-size: 15px;
    color: rgba(var(--white-color), 1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(var(--main-color), 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-box-head h5 {
    font-size: 18px;
    font-weight: 700;
    color: #4F4F4F;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #4F4F4F;
    letter-spacing: 2px;
    transition: var(--transition-05s);
    text-transform: uppercase;
}

.footer-list li a:hover {
    color: var(--main-color);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact-list li {
    margin-bottom: 15px;
}

.footer-contact-list li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4F4F4F;
    transition: var(--transition-05s);
}

.footer-contact-list li a:hover {
    color: var(--main-color);
}

.footer-contact-list li a.email {
    text-transform: lowercase;
}

.footer-follow-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.footer-follow-box h5 {
    font-size: 18px;
    font-weight: 700;
    color: #4F4F4F;
    text-transform: uppercase;
}

.footer-follow-box .footer-follow-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-follow-box .footer-follow-list li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white-color);
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}


.footer-copyright {
    padding: 10px 0px;
    text-align: center;
    border-top: 1px solid rgba(81, 79, 79, 0.2);
}

.footer-copyright p {
    color: #4F4F4F;
    margin-bottom: 0px;
    font-size: 14px;
}


/* Modal backdrop blur & dim */
.notice-modal .modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Modal card */
.notice-modal .modal-content {
    border-radius: 18px;
    padding: 20px 0px;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Close button (top-right circle) */
/* .notice-modal .custom-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: #2f6f73;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    opacity: 1;
    filter: invert(1);
} */
/* Custom modal header */
.notice-header {
    position: relative;
    /* border-bottom: none; */
    justify-content: center;
    /* center title */
    padding: 0 40px 20px;
}

/* Centered title */
.notice-header .modal-title {
    text-align: center;
    margin: 0;
    width: 100%;
    font-size: 26px;
    font-weight: 700;
    color: #2f6f73;
    line-height: 1.3;
}

/* Close button fixed to top-right */
.notice-header .btn-close.custom-close {
    position: absolute;
    top: 0px;
    right: 10px;
    margin: 0;
    background: #2f6f73;
    /* background: none; */
    border-radius: 50%;
    width: 14px;
    height: 14px;
    opacity: 1;
    color: #fff !important;
    filter: invert(0);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Title */
.notice-modal .modal-title {
    font-size: 26px;
    font-weight: 700;
    color: #2f6f73;
    line-height: 1.3;
}

/* Body text */
.notice-modal p {
    font-size: 18px;
    color: #252525;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* Phone number */
.notice-modal .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 26px;
    font-weight: 700;
    color: #37676B;
    text-decoration: none;
    margin: 10px 0 20px;
}

/* .notice-modal .phone-link:hover {
    text-decoration: underline;
} */

/* Thank you text */
.notice-modal .thank-text {
    font-size: 20px;
    color: #37676B;
    margin-top: 10px;
}







/********************************************** Media query ***********************************/

/********************* Min width Section *****************************/

/* @media (min-width: 992px) {
    .dropdown-menu {
      display: grid;
      opacity: 0;
      visibility: hidden;
    }
    .nav-item.dropdown:hover .dropdown-menu,
    .nav-item.dropdown .dropdown-menu.show {
      opacity: 1;
      visibility: visible;
    }
}
@media (min-width: 1200px){
	.nav-item.dropdown .dropdown-menu[data-bs-popper] {
		top: 100%;
	}
} */

@media (min-width: 1401px) and (max-width: 1539px) {
    .about-right-small-img {
        right: 80px;
    }

    .service-right-side-img {
        bottom: 20px;
    }

    .personalBios-left-box {
        width: 90%;
        padding-left: 80px;
    }
}

/* @media (min-width: 1500px) {
    
} */
@media (min-width: 1540px) and (max-width: 1639px) {
    .about-right-small-img {
        right: 80px;
    }

    .ohabnr-left-img {
        left: 0px;
        height: 400px;
    }

    .ohabnr-right-img {
        right: 0px;
        height: 520px;
    }



}

@media (min-width: 1540px) {
    .container {
        max-width: 1500px;
    }
}

@media (min-width: 1640px) {
    .container {
        max-width: 1600px;
    }
}

/* @media (min-width: 1740px){
    .container {
        max-width: 1690px;
    }
} */

/************************************* Max Width Section ******************************/

@media (max-width: 1399px) {
    .banner-left-box h1 {
        font-size: 68px;
        line-height: 68px;
    }



    .about-right-box h3 {
        font-size: 38px;
        line-height: 42px;
    }

    .about-right-small-img {
        bottom: 100px;
        right: 30px;
        height: 200px;
    }

    .services-head {
        width: 60%;
    }

    .services-box h5 {
        font-size: 20px;
        line-height: 28px;
    }

    .services-box p {
        font-size: 14px;
        line-height: 24px;
    }

    .services-box {
        min-height: 350px;
    }

    .service-right-side-img {
        display: none;
    }

    .personalBios-left-box {
        width: 100%;
        padding-left: 20px;
    }

    .personalBios-right-box {
        margin-bottom: -100px;
    }

    .plans-head {
        width: 80%;
        margin: auto;
    }

    .plans-box-head h5 {
        font-size: 24px;
    }

    .plans-box-lwr h5 {
        font-size: 20px;
    }

    .plans-box-lwr ul li {
        font-size: 14px;
        padding-left: 30px;
    }

    .ohabnr-left-img {
        left: 0px;
        height: 300px;
    }

    .ohabnr-right-img {
        right: 0px;
        height: 450px;
    }
}

@media (max-width: 1199px) {
    .about-right-box {
        width: 100%;
    }

    .navbar-brand {
        height: 70px;
    }

    .navbar-nav {
        gap: 5px;
    }

    .navbar-nav .nav-item a {
        font-size: 13px;
    }

    .navbar-nav .nav-item a:hover,
    .navbar-nav .nav-item .active {
        padding: 5px 10px;
    }

    .navbar-nav {
        padding: 5px 10px;
    }

    .common-btn,
    .common-btn2 {
        padding: 5px 15px;
        font-size: 14px;
    }

    .banner-left-box h1 {
        font-size: 48px;
        line-height: 48px;
    }

    .banner-left-box p {
        font-size: 14px;
        line-height: 22px;
    }

    .banner-left-box,
    .bnr-img-bg {
        min-height: 55dvh;
    }

    .about-right-small-img {
        display: none;
    }

    .about-right-box {
        width: 100%;
        padding-left: 0px;
    }

    .about-right-box h3 {
        font-size: 32px;
        line-height: 38px;
    }

    .abt-right-list {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }

    .abt-right-list li {
        font-size: 16px;
    }

    .services-head h3 {
        font-size: 32px;
        line-height: 38px;
    }

    .personalBios-left-box {
        padding-left: 0px;
    }

    .personalBios-left-box h3 {
        font-size: 32px;
        line-height: 38px;
    }

    .personalBios-left-box p {
        font-size: 14px;
        line-height: 24px;
    }

    .personalBios-right-box::before,
    .personalBios-right-box::after {
        display: none;
    }

    .personalBios-right-box {
        margin-bottom: -95px;
        height: auto;
    }

    .plans-head h3 {
        font-size: 32px;
        line-height: 38px;
    }

    .plans-lwr {
        margin-top: 20px;
    }

    .plans-box-lwr {
        padding: 10px;
    }

    .plans-box-head {
        padding: 10px;
    }

    .plans-box-head h5 {
        font-size: 20px;
    }

    .plans-box-lwr h5 {
        font-size: 16px;
    }

    .plans-box-lwr ul li {
        font-size: 13px;
    }

    .plans-box-lwr ul li::before {
        width: 15px;
        height: 15px;
        font-size: 12px;
        margin-top: 5px;
    }

    .plans-box-lwr ul {
        gap: 10px;
    }

    .ohabnr-content-box h3 {
        font-size: 32px;
        line-height: 38px;
    }

    .ohabnr-content-box p {
        font-size: 14px;
        line-height: 22px;
    }

    .ohabnr-content-box h5 {
        font-size: 20px;
        line-height: 32px;
    }

    .ohabnr-right-img {
        right: 0px;
        height: 400px;
    }

    .ohabnr-download-box {
        height: 40px;
    }

    .patientPortal-right-img {
        height: auto;
    }

    .patientPortal-right-img::after {
        top: 0px;
    }

    .patientPortal-left-box {
        width: 100%;
    }

    .patientPortal-left-head h3 {
        font-size: 32px;
        line-height: 38px;
    }

    .patientPortal-left-head p {
        font-size: 14px;
        line-height: 22px;
    }

    .footer-list li a {
        font-size: 14px;
    }

    .footer-contact-list li a {
        font-size: 14px;
    }

    .footer-box-head h5 {
        font-size: 16px;
    }

    .header-top p {
        font-size: 15px;
    }

    .about-right-box h3 {
        margin: 20px 0px;
    }

    .services-img,
    .services-hover-img {
        height: 60px;
    }

    .services-box {
        padding: 20px 10px;
        min-height: 350px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        background: rgba(255, 255, 255, 1);
        width: 100%;
        left: 0;
        top: 100%;
        padding: 5px;
        border-top: 1px solid #f4f4f4;
        /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.23); */
    }

    .common-section {
        padding: 30px 0px;
    }

    .head-contact {
        gap: 10px;
    }

    .navbar-brand {
        width: 70px;
    }

    .navbar-brand img {
        object-fit: contain;
    }

    .navbar-toggler-icon {
        width: 20px !important;
        height: 20px !important;
    }

    .head-contact>.navbar-toggler,
    .head-contact>.navbar-toggler.collapsed {
        padding: 2px;
        border: 1px solid #74747470;
        background: rgba(var(--white-color), 1);
        border-radius: 0px;
        box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.23) !important;
    }


    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    .navbar-toggler {
        padding: 6px;
        border: none;
        background: rgba(var(--main2-color), 1);
        border-radius: 4px;
    }

    .notice-modal .modal-title {
        font-size: 24px;
    }

    .notice-modal p {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .notice-modal .phone-link {
        font-size: 20px;
    }

    .notice-modal .thank-text {
        font-size: 18px;
    }

    .abt-right-list {
        align-items: flex-start;
    }

    .personalBios-right-box {
        margin-bottom: -30px;
    }

    .plans-side-img {
        top: 40px;
    }

    .plans-box {
        min-height: auto;
    }

    .ohabnr-left-img {
        height: 200px;
    }

    .ohabnr-right-img {
        height: 240px;
    }

    .ohabnr-side-img {
        height: 100px;
        right: 0px;
        top: 20px;
    }

    .footer-copyright p {
        font-size: 13px;
    }

    .about-left-img {
        height: auto;
    }

}

@media (max-width: 767px) {

    .service-left-side-img,
    .service-right-side-img {
        height: 100px;
    }

    .service-left-side-img {
        top: 40px;
    }

    .banner-left-box,
    .bnr-img-bg {
        min-height: auto;
    }

    .bnr-img-bg {
        position: relative;
    }

    .banner-left-box {
        padding: 40px 0px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .banner-left-box h1 {
        font-size: 34px;
        line-height: 38px;
    }

    .about-right-box h3 {
        font-size: 28px;
        line-height: 32px;
    }

    .about-right-box p {
        font-size: 14px;
    }

    .services-head {
        width: 70%;
    }

    .services-box {
        padding: 30px 10px;
    }

    .ohabnr-left-img {
        height: 150px;
    }

    .ohabnr-right-img {
        height: 180px;
    }
}

@media (max-width: 575px) {
    .header-top p {
        font-size: 12px;
    }

 

    .navbar-brand {
        width: 90px;
    }

    .banner-left-box h1 {
        font-size: 28px;
        line-height: 32px;
    }

    .banner-left-box {
        padding: 20px 0px;
    }

    .notice-modal .modal-title {
        font-size: 18px;
    }

    .notice-modal .thank-text {
        font-size: 15px;
    }

    .notice-modal .thank-text {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .notice-modal .phone-link {
        font-size: 18px;
    }

    .services-head {
        width: 100%;
    }

    .services-head h3 {
        font-size: 26px;
        line-height: 30px;
    }

    .personalBios-left-box h3 {
        font-size: 26px;
        line-height: 32px;
    }

    .plans-head {
        width: 100%;
        margin: auto;
    }

    .plans-head h3 {
        font-size: 26px;
        line-height: 32px;
    }

    .ohabnr-left-img,
    .ohabnr-right-img {
        display: none;
    }

    .ohabnr-content-box h3 {
        font-size: 26px;
        line-height: 32px;
    }

    .footer-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 5px;
    }

    .footer-box-head h5 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer-contact-list li a {
        font-size: 13px;
    }

    .footer-follow-box h5 {
        font-size: 16px;
    }

    .footer-top {
        padding: 30px 0px;
    }

    .faq-head .faq-title {
        font-size: 28px;
        line-height: 38px;
    }

    .faq-head .faq-subtitle {
        font-size: 13px;
    }

    .banner-left-inrbox h1 {
        font-size: 26px;
    }

    .faq-accordion .accordion-body {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* @media (max-width: 410px) {
    .contact-form {
        padding: 10px;
        border-radius: 10px;
    }

    .cart-icon img {
        width: 40px;
    }

    .btn-cart {
        gap: 5px;
    }

    .nav-btns {
        gap: 5px;
    }

    .head-brand-menu .common-btn {
        font-size: 10px;
    }
} */

/* ===== Section Layout ===== */
.service-content {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}
/* ===== Image Styling ===== */
.service-content img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transition: transform .4s ease;
}

.service-content img:hover {
  transform: scale(1.03);
}

/* ===== Typography ===== */
.service-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.service-content h3 {
  font-size: 22px;
  font-weight: 600;
  color:#638c90;
  margin-bottom: 6px;
}

.service-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
}

.service-content h6 {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 25px;
}


/* ===== List Styling ===== */
.service-content .list-group {
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
}

.service-content .list-group-item {
  border: none;
  padding: 14px 16px;
  background: #fff;
  margin-bottom: 8px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  box-shadow: 0 5px 14px rgba(0,0,0,0.05);

  display: flex;
  align-items: center;
  gap: 10px;

  transition: all .25s ease;
}

.service-content .list-group-item:hover {
  transform: translateX(6px);
  background: #f0f6ff;
}


/* icon */
.service-content .list-group-item i {
  color: #638c90;
  font-size: 16px;
}


/* ===== Emphasis Text ===== */
.service-content em {
  display: block;
  margin-top: 18px;
  padding: 14px 18px;
  background: #638c90;
  color: #fff;
  border-radius: 10px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
  .service-content {
    padding: 60px 0;
    text-align: center;
  }

  .service-content img {
    margin-bottom: 30px;
  }
}

/* ===== Amount Card ===== */
.amount {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;

  padding: 20px 28px;
  border-radius: 16px;

  /* background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff; */

  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.35);

  transition: all .3s ease;
}

/* hover effect */
.amount:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 20px 55px rgba(37, 99, 235, 0.45); */
}


/* ===== Currency ($) ===== */
.amount .currency {
  font-size: 22px;
  font-weight: 600;
  opacity: .9;
  position: relative;
  top: -8px;
}


/* ===== Price ===== */
.amount .price {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  line-height: 1;
  letter-spacing: 1px;
}


/* ===== Duration text ===== */
.amount .duration {
  font-size: 14px;
  font-weight: 500;
  opacity: .9;
  margin-left: 6px;
}
.wc-block-components-checkout-place-order-button {
	padding: 10px 30px;
	border: 0;
	background: #618d90;
	color: #fff;
	border-radius: 30px;
}
.personalBios-section {
	padding-top: 40px;
}


@media (min-width: 1023px) and (max-width: 3000px) {
  .darkHeader {
    background-color: #fff;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 5px 8px 0 rgba(0, 0, 0, 0.14), 0 1px 14px 0 rgba(0, 0, 0, 0.12);
    padding-top: 0px !important;
    padding-bottom: 0px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    position: fixed !important;
    width: 100%;
    animation: smoothScroll 1s forwards;
    z-index: 9;
  }

}
.darkHeader .header-top{
	display: none !important;
}
.requestAppointment-input-box input, .requestAppointment-input-box select, .requestAppointment-input-box textarea {
	max-width: 100%;
}
@media (max-width: 1650px) {
  .ohabnr-right-img {
    right: 0px !important;
    max-height: 550px;
  }
  .ohabnr-right-img {
	bottom: 0px;
	height: auto;
}
.ohabnr-left-img {
	left: 0px;
	height: 350px !important;
}
}
@media (max-width: 1650px) {
.faq-section {
	padding: 15px 0 !important;
}
}
.common-section.plans-section {
	padding-top: 40px !important;
}
.woocommerce-Price-amount.amount {
	box-shadow: none !important;
}
.woocommerce-MyAccount-navigation ul {
	margin-bottom: 15px;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
	border-radius: 26px;
	left: auto;
	color: #fff;
	background-color: #618d90;
	border: 0;
	background-image: none;
	box-shadow: none;
	text-shadow: none;
}
.requestAppointment-form-box br{
	display: none;
}
.requestAppointment-form-box p {
    margin-bottom: 0;
}
@media (max-width:767px){


.requestAppointment-form-box form{
    padding-left: 15px;
    padding-right: 15px;
}
}



/* ===============================
   My Account Layout
================================ */
.woocommerce {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin: 40px 0;
}

/* ===============================
   Sidebar Navigation
================================ */
.woocommerce-MyAccount-navigation {
  width: 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  padding: 15px 0;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation-link a {
  display: block;
  padding: 12px 20px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.woocommerce-MyAccount-navigation-link a:hover {
  background: #f5f7fa;
  color: #618d90;
}

.woocommerce-MyAccount-navigation-link.is-active a {
  background: #618d90;
  color: #fff;
  border-radius: 8px;
}


/* ===============================
   Content Card
================================ */
.woocommerce-MyAccount-content {
  flex: 1;
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}


/* ===============================
   Form Fields
================================ */
.woocommerce-form-row label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.woocommerce-Input,
.input-text {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  background: #fafafa;
  transition: 0.3s;
}

.woocommerce-Input:focus,
.input-text:focus {
  border-color: #0d6efd;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(13,110,253,.1);
  outline: none;
}


/* Two column first/last name */
.form-row-first,
.form-row-last {
  width: 48%;
}

.form-row-first {
  float: left;
}

.form-row-last {
  float: right;
}


/* ===============================
   Fieldset (Password Section)
================================ */
fieldset {
  border: 1px solid #e5e5e5;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

legend {
  font-weight: 600;
  padding: 0 10px;
}


/* ===============================
   Button
================================ */
.woocommerce-Button.button {
  background: #618d90;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  transition: 0.3s;
}

.woocommerce-Button.button:hover {
  background: #618d90;
}


/* ===============================
   Mobile Responsive
================================ */
@media (max-width: 768px) {
  .woocommerce {
    flex-direction: column;
  }

  .woocommerce-MyAccount-navigation {
    width: 100%;
  }

  .form-row-first,
  .form-row-last {
    width: 100%;
    float: none;
  }
}

.woocommerce-Button.button {
	margin-top: 15px !important;
}