@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&family=Poppins:wght@400;600;700&display=swap");

:root {
    /* top nav */
    --topNav-font-name: "Poppins Regular", sans-serif;
    --topNav-font-color: #575756;
    --topNav-font-size: 13px;
    --topNav-background-color: #ededed;

    /* appointment section */
    --appointment-brand-font-color: #00b1eb;
    --brand-icon-color: #00b1eb;
    --appointment-container-bg-color: #d4e5f7;
    --appointment-doctor-name-font-color: #00b1eb;
    --appointment-doctor-profession-font-color: #00b1eb;

    /* biography & education */
    --biograhpy-container-bg-color: #83d0f5;
    --education_biography_title: #ffffff;
    --education_biography_description: #ffffff;

    /* education section */
    --education-Container-bg: #d4e5f7;
    --education_title-font-color: #00b1eb;
    --education_description-font-color: #646363;

    /* experience section */
    --experience-section-bg-color: #83d0f5;
    --experience-title-font-color: #ffffff;
    --experience-description-font-color: #ffffff;
    --experience-section-footer-color: #00a4e5da;

    /* achievement section */
    --achievement-section-bg-color: #e3eff7;
    --achievement-title-font-color: #00b1eb;
    --achievement-descripttion-font-color: #646363;

    /* chamber-section */
    --chamber-title-font-color: #00b1eb;
    --chamber-hospital-name-font-color: #4a4a49;
    --chamber-time-font-color: #646363;
    --chamber-section-bg-color: #d4e5f7;
}

/* Global setup */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.icon_background {
    background-color: var(--brand-icon-color);
}

/* font familly */
.proppins-font-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.proppins-font-semiBold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.proppins-font-Bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.montserrat-font-semiBold {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.montserrat-font-Bold {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

.montserrat-font-ExtraBold {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}

/* top navbar */
.navbar-item {
    font-size: var(--top-nav-font-size);
    font-family: var(--top-nav-font-family);
}

.top-nav {
    font-family: var(--topNav-font-name);
    font-size: var(--topNav-font-size);
    color: var(--topNav-font-color);
    background-color: var(--topNav-background-color);
}

/* APPOINTMET-SECTION */

.appointment-navbar {
    margin-top: 57px;
    background-color: var(--appointment-background);
}

.navbar-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Appointment-Logo {
    height: 40px;
}

.navbar-brand h1 {
    color: var(--appointment-brand-font-color);
    font-size: 23px;
}

.appointment-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-icon {
    width: var(--mobile-icon-width);
    /* border: 2px solid red; */
    margin-bottom: 10px;
    margin-left: 10px;
    color: var(--mobile-icon-color);
}

.mobile-text-container {
    line-height: 30px;
}

.mobile-text {
    font-size: var(--mobile-text-font-size);
    font-family: var(--mobile-text-font-family);
    font-weight: 600;
}

.mobile-text a {
    color: var(--mobile-icon-color);
    text-decoration: none;
}

.mobile-text a:hover {
    color: var(--brand-text-color);
}

.mobile-num {
    font-size: var(--mobile-number-font-size);
    font-family: var(--mobile-text-font-family);
    font-weight: 700;
}

/* appointment section */
.appointment-container1 {
    position: relative;
    height: 500px;
    width: 100%;
    background-color: var(--appointment-container-bg-color);
}

.appointment-container-img {
    position: absolute;
    bottom: 0;
    height: 400px;
    /* width: 400px; */
}

.appointment-container-title1 {
    padding-top: 180px;
    letter-spacing: 1.5px;
    color: var(--appointment-doctor-name-font-color);
    text-transform: capitalize;
}

.appointment-description {
    color: var(--appointment-doctor-profession-font-color);
    /* width: 70% !important; */
    text-align: justify;
}

.appointment-container1 .social-icon {
    margin-top: 150px;
}

.appointment-container1 .social-icon i {
    padding-top: 15px;
    font-size: 22px;
    bottom: 0;
    cursor: pointer;
}

.appointment-container1 .social-icon .fa-facebook-f {
    color: #007cae;
}

.appointment-container1 .social-icon .fa-instagram {
    color: #e94282;
}

.appointment-container1 .social-icon .fa-whatsapp {
    color: lawngreen;
}

.appointment-container1 .social-icon .fa-linkedin-in {
    color: #2699d6;
}

/* biography container */
.biograpy-container {
    /* height: 270px; */
    background-color: var(--biograhpy-container-bg-color);
}

.biograpy-container-title {
    margin-top: 50px;
    color: var(--education_biography_title);
}

.biography-underline-span {
    display: block;
    height: 3px;
    width: 65px;
    margin-left: 2px;
    background-color: var(--education_biography_title);
}

.biograpy-container-description {
    color: var(--education_biography_title);
}

.biograpy-container .biography-image {
    height: 150px;
    width: 150px;
}

/* education  container */
.education-container {
    height: auto;
    background: var(--education-Container-bg);
}

.education-container-height {
    /* height: 100px; */
    position: relative;
}

.education-image {
    height: 350px;
}

.education-image img {
    height: 200px;
}

.education-container .education-container-title {
    padding-top: 80px;
    color: var(--education_title-font-color);
}

.education-container .education-underline-span {
    display: block;
    height: 3px;
    width: 65px;
    margin-left: 2px;
    background-color: var(--education_title-font-color);
}

.education-container .education-container-description {
    /* text-align: justify; */
    color: var(--education_description-font-color);
}

.education-container .education-container-description>h6 {
    /* width: 40%; */
}

/* experience section */
.experience-section {
    height: auto;
    background: var(--experience-section-bg-color);
}

.experience-font-title {
    margin-top: 50px;
    color: var(--education_biography_title);
}

.experience-underline-span {
    display: block;
    height: 3px;
    width: 65px;
    margin-left: 2px;
    background-color: var(--education_biography_title);
}

.expeerience-description {
    text-align: justify;
    width: 85%;
    color: var(--experience-description-font-color);
}

.experience-container-img {
    margin-top: 50px;
    width: 100%;
    height: 360px;
}

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

.experience-section-footer {
    width: 100%;
    height: 10px;
    background-color: var(--experience-section-footer-color);
}

/* achieviement section */
.achivement-container {
    position: relative;
    height: 470px;
    width: 100% !important;
    background-color: var(--achievement-section-bg-color);
}

.achivement-container ul {
    margin-left: -15px;
}

.achivement-container ul li {
    color: var(--appointment-description-font-color);
    margin-top: 6px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.achievement-title {
    color: var(--achievement-title-font-color);
}

.achievement-underline-span {
    display: block;
    height: 3px;
    width: 65px;
    margin-left: 2px;
    background-color: var(--achievement-title-font-color);
}

.achievement-description {
    color: var(--appointment-description-font-color);
}

.achievement-image {
    position: absolute;
    bottom: 0;
    max-height: 400px;
    margin-left: 50px;
}

/* chamber details */
.chamber-container {
    background-color: var(--chamber-section-bg-color);
}

.chamber-details-title {
    color: var(--chamber-title-font-color);
}

.chamber-underline-span {
    display: block;
    height: 3px;
    width: 65px;
    margin-left: 2px;
    background-color: var(--chamber-title-font-color);
}

.chamber-hospital-title {
    color: var(--chamber-hospital-name-font-color);
}

.time {
    color: var(--chamber-time-font-color);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    width: 70%;
}

.chamber-details-horizontal-line {
    height: 0.1rem;
    width: 35%;
    margin-top: 11.5px;
    background-color: #646363;
}

/* responsive design tab*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .appointment-brand {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .appointment-brand-title {
        font-size: 15px;
    }

    .appointment-header-text {
        font-size: 13px !important;
    }

    .appointment-phone h6 {
        font-size: 13px;
    }

    .appointment-phone h4 {
        font-size: 15px;
    }

    .appointment-container1 {
        position: relative;
        height: 300px;
        width: 100%;
        background-color: var(--appointment-container-bg-color);
    }

    .appointment-container-img {
        position: absolute;
        bottom: 0;
        height: 250px;
        /* width: 400px; */
    }

    .appointment-container-title1 {
        padding-top: 110px;
        letter-spacing: 1.5px;
        color: var(--appointment-doctor-name-font-color);
    }

    .appointment-description {
        color: var(--appointment-doctor-profession-font-color);
        text-align: justify;
    }

    .appointment-container1 .social-icon {
        margin-top: 20px;
    }

    /* biograhpy container */
    .biograpy-container {
        height: 330px;
        background-color: var(--biograhpy-container-bg-color);
    }

    .biograpy-container-title {
        margin-top: 40px;
        color: var(--education_biography_title);
    }

    .education-container {
        height: auto;
        background: var(--education-experienceContainer-bg);
    }

    .education-container-height {
        height: 370px;
        position: relative;
        overflow: hidden;
    }

    .education-container-height img {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
    }

    /* experience container */
    .expeerience-description {
        width: 95%;
    }

    .experience-container-img {
        height: 700px;
        display: flex;
        align-items: center;
        margin-top: 0px;
    }

    .experience-img {
        height: 400px;
    }

    .experience-section-footer {
        margin-top: -0.5px;
    }

    /* achivement container */
    .achievement-image {
        max-height: 450px;
        margin-left: -20px;
    }

    .achivement-container {
        height: 580px;
    }

    .achivement-container ul {
        margin-left: 0px;
    }

    /* chamber details */
    .chamber-details-horizontal-line {
        height: 0.01rem;
        margin-top: 11.5px;
        width: 15%;
        background-color: #646363;
    }

    .time {
        width: 90% !important;
    }
}

/* mobile responsive */
@media screen and (max-width: 768px) {
    .appointment-navbar {
        margin-top: 57px;
    }

    .navbar-brand {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Appointment-Logo {
        width: 40px;
        color: var(--brand-icon-color);
    }

    .navbar-brand h1 {
        font-size: 16px;
        font-family: var(--brand-font-family);
    }

    .appointment-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-icon {
        width: 20px;
        margin: auto 0;
        color: var(--mobile-icon-color);
    }

    .mobile-text-container {
        line-height: 16px;
    }

    .mobile-text {
        font-size: 9px;
        font-family: var(--mobile-text-font-family);
    }

    .mobile-num {
        font-size: 14px;
        font-family: var(--mobile-text-font-family);
    }

    .appointment-container1 {
        position: relative;
        height: 700px;
    }

    .appointment-container-img {
        position: relative;
        /* height: 260px; */
    }

    .appointment-container-title1 {
        padding-top: 0px;
        letter-spacing: 1.5px;
        color: var(--appointment-doctor-name-font-color);
    }

    .appointment-description {
        color: var(--appointment-doctor-profession-font-color);
        text-align: justify;
    }

    .appointment-container1 .social-icon {
        margin-top: 60px;
    }

    .appointment-container1 .social-icon i {
        font-size: 22px;
        margin-left: 15px;
    }

    .appointment-container-img {
        position: relative;
        /* height: 350px; */
    }

    .appointment-container-title1 {
        width: 100%;
        padding-top: 15px;
        text-align: center;
    }

    /* biograhpy container */
    .biograpy-container {
        text-align: justify;
        height: auto;
    }

    .biograpy-container .biography-container-image {
        height: 180px;
    }

    .biograpy-container .biography-image {
        height: 80px;
        width: 80px;
    }

    .biograpy-container-title {
        margin-top: 0px;
        color: var(--education_biography_title);
    }

    /* education container */
    .education-container .education-container-title {
        padding-top: 10px;
    }

    .education-container-height {
        height: auto;
        position: relative;
        margin-bottom: 10px;
    }

    .education-image {
        height: 300px;
    }

    /* experience section */
    .experience-container-img {
        margin-top: 30px;
    }

    .experinece-img {
        height: 380px !important;
        background-size: cover;
    }

    .experinece-img img {
        height: 100%;
        width: 100%;
    }

    .expeerience-description {
        width: 100%;
    }

    .experience-section-footer {
        margin-top: -0.1px;
    }

    /* achievement section */
    .achivement-container {
        height: auto;
    }

    .achievement-image-div {
        display: flex;
        justify-content: center;
    }

    .achievement-image {
        position: relative;
        margin-left: 0;
        height: 280px !important;
    }

    /* chamber details contaimer */
    .chamber-details-horizontal-line {
        height: 0.01rem;
        margin-top: 10px;
        width: 20%;
        background-color: #646363;
    }

    .time {
        width: 95% !important;
    }
}
