@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;800&family=Poppins:wght@400;600;700&display=swap");

:root {
  --menu-background: #dadada;
  --appointment-background: #fff;
  --banner-backgroundr: #dadada;
  --bio-backgroundr: #c7a6cf;
  --experience-backgroundr: #f2f5f6;
  --achievement-backgroundr: #f2f5f6;
  --chamber-details-backgroundr: #fceaf4;

  --heading-font-family: "Montserrat", sans-serif;
  --paragraph-font-family: "Poppins", sans-serif;
  --body-font-size: 14px;

  /* top-navbar-section */
  --top-nav-font-family: "Poppins Regular", sans-serif;
  --top-nav-font-color: #575756;
  --top-nav-font-size: 13px;
  --top-nav-background-color: #ededed;

  /* appointment-section */
  --brand-font-size: 26px;
  --brand-text-color: #cf9fc9;
  --brand-icon-color: #cf9fc9;
  --mobile-icon-color: #616160;
  --brand-font-family: "poppins-semibold", sans-serif;
  --brand-Logo-width: 48px;
  --mobile-icon-width: 32px;
  --mobile-text-font-size: 14px;
  --mobile-text-font-family: "poppins-bold", sans-serif;
  --mobile-number-font-size: 22px;

  /* Background Color */
  --white-background-color: #ffffff;
  --theme-background-color: #cf9fc9;
  --theme-background-color-2: #e7cfe5;
  --theme-background-color-3: #e5e5e5;
  --theme-background-color-4: #f2f2f2;
  --section-background-color: #cf9fc9;

  /* Font Color */
  --white-font-color: #ffffff;
  --black-font-color: #000000;
  --gray-font-color: #6a6a67;
  --light-gray-font-color: #b5b0b0;
  --theme-font-color: #cf9fc9;
  --theme-font-color-2: #cf9fc9;

  /* Font Family */
  --font-family-poppins-regular: "Poppins Regular", sans-serif;
  --font-family-poppins-medium: "Poppins Medium", sans-serif;
  --font-family-poppins-semi-bold: "Poppins SemiBold", sans-serif;
  --font-family-poppins-bold: "Poppins Bold", sans-serif;
  --font-family-montserrat-regular: "Montserrat Regular", sans-serif;
  --font-family-montserrat-medium: "Montserrat Medium", sans-serif;
  --font-family-montserrat-semi-bold: "Montserrat SemiBold", sans-serif;
  --font-family-montserrat-bold: "Montserrat Bold", sans-serif;
}

/* Global setup */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: var(--paragraph-font-family);
  font-size: var(--body-font-size);
}

.horizontal-line {
  height: 3px;
  width: 15%;
  margin: 0 auto !important;
  background-color: var(--horizontal-line-background-color);
}

/* top-navbar-section */
.navbar-item {
  font-size: var(--top-nav-font-size);
  font-family: var(--top-nav-font-family);
}

.top-nav {
  background-color: var(--top-nav-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 {
  width: var(--brand-Logo-width);
  color: var(--brand-icon-color) !important;
}

.brand-name {
  color: var(--brand-text-color);
  font-size: var(--brand-font-size);
  font-family: var(--brand-font-family);
}

.appointment-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-icon {
  width: var(--mobile-icon-width);
  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;
}

.icon_background {
  background-color: var(--brand-icon-color);
}

@media only screen and (max-width: 768px) {

  /* APPOINTMET-S
  ECTION  MEDIA QUERY*/
  .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: 13px;
    font-family: var(--brand-font-family);
    color: var(--brand-text-color);
  }

  .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);
  }
}

/* COMMON PART */
/* Background Color*/
.white-background-color {
  background-color: var(--white-background-color);
}

.theme-background-color {
  background-color: var(--theme-background-color) !important;
}

.theme-background-color-2 {
  background-color: var(--theme-background-color-2) !important;
}

.theme-background-color-3 {
  background-color: var(--theme-background-color-3) !important;
}

.theme-background-color-4 {
  background-color: var(--theme-background-color-4) !important;
}

.section-background-color {
  background-color: var(--section-background-color) !important;
}

/* Font Color */
.white-font-color {
  color: var(--white-font-color);
}

.black-font-color {
  color: var(--black-font-color);
}


.gray-font-color {
  color: var(--gray-font-color);
}

.light-gray-font-color {
  color: var(--light-gray-font-color);
}

.theme-font-color {
  color: var(--theme-font-color);
}

.theme-font-color-2 {
  color: var(--theme-font-color-2);
}

/* Font Family */
.poppins-regular {
  font-family: var(--font-family-regular);
}

.poppins-medium {
  font-family: var(--font-family-medium);
}

.poppins-semibold {
  font-family: var(--font-family-semi-bold);
}

.poppins-bold {
  font-family: var(--font-family-bold);
}

.montserrat-regular {
  font-family: var(--font-family-regular-1);
}

.montserrat-medium {
  font-family: var(--font-family-medium-1);
}

.montserrat-semibold {
  font-family: var(--font-family-semi-bold-1);
}

.montserrat-bold {
  font-family: var(--font-family-bold-1);
}

/* LARGE SCREEN */
/* BANNER SECTION */
.banner-bacground {
  background-image: url("../dp177/Asset_4.png");
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center;
}

.banner-title {
  font-size: 45px;
}

.banner-subtile {
  width: 70%;
  font-size: 32px;
}

.banner-description {
  font-size: 16px;
}

.banner-image {
  width: 350px;
  height: 400px;
}

.facebook-icon-color {
  color: #4267b2;
}

.instragram-icon-color {
  color: #e4405f;
}

.whatsapp-icon-color {
  color: #0e8f38;
}

.linkedin-icon-color {
  color: #0072b1;
}

.social-media-icon-color {
  background-color: var(--brand-icon-color);
}

/* BIOGRAPHY SECTION */
.biography-screen-width {
  width: 65%;
}

.education-screen-width {
  width: 50%;
}

/* EXPERIENCE SECTION */
.experience-image {
  width: 500px;
  height: 400px;
  border: 10px solid var(--white-font-color);
}

.left-border {
  border-left: 3px solid var(--theme-font-color);
}

.experience-description {
  width: 65%;
}

/* ACHIEVEMENT SECTION */
.achievement-bacground {
  background-image: url("../dp177/Asset_6.png");
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center;
}

.achievement-image {
  width: 200px;
  height: 300px;
}

/* CHAMBER DETAILS SECTION */
.schedule-width {
  width: 300px;
}

.chamber-details-image {
  width: 400px;
  height: 600px;
}

.chamber-details-background {
  background-image: url("../dp177/Asset_9.3.png");
  background-repeat: no-repeat !important;
  background-size: 170px !important;
  background-position: left bottom;
}

/* Mobile */
@media only screen and (max-width: 768px) {
  .letter-space {
    letter-spacing: 5px;
  }

  /* BANNER SECTION */
  .banner-title {
    font-size: 20px;
  }

  .banner-subtile {
    width: 100%;
    font-size: 17px !important;
  }

  .banner-description {
    font-size: 4px;
  }

  .banner-image {
    width: 300px;
    height: 350px;
    padding-top: 20px;
  }

  /* BIOGRAPHY SECTION */
  .biography-screen-width {
    width: 100%;
    text-align: justify;
  }

  .education-screen-width {
    width: 95%;
    text-align: justify;
  }

  /* EXPERIENCE SECTION */
  .experience-image {
    width: 90%;
    height: 90%;
  }

  .experience-description {
    width: 70%;
  }

  /* ACHIEVEMENT SECTION */
  .achievement-image {
    width: 200px;
    height: 300px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  /* CHAMBER DETAILS SECTION */
  .schedule-width {
    width: 300px;
  }

  .chamber-details-image {
    width: 300px;
    height: 400px;
    padding-top: 30px;
  }
}

/* Tab */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .banner-title {
    font-size: 30px;
  }

  .banner-subtile {
    width: 90%;
    font-size: 8px;
  }

  .banner-description {
    font-size: 8px;
  }

  .banner-image {
    width: 300px;
    height: 400px;
    padding-top: 20px;
  }

  /* Biography Education */
  .biography-screen-width {
    width: 80%;
  }

  .education-screen-width {
    width: 60%;
  }

  /* EXPERIENCE SECTION */
  .experience-image {
    width: 80%;
    height: 90%;
  }

  .experience-description {
    width: 70%;
  }

  /* ACHIEVEMENT SECTION */
  .achievement-image {
    width: 250px;
    height: 350px;
  }

  /* CHAMBER DETAILS SECTION */
  .schedule-width {
    width: 320px;
  }

  .chamber-details-image {
    width: 400px;
    height: 500px;
  }
}

.side-border {
  border-left: 2px solid var(--theme-font-color);
  border-right: 2px solid var(--theme-font-color);
}