:root {
  --primary-color: #212333;
  --secondary-color: #0652a8;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #c78a3c;
  --secondary: #f4faec;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #ffffff;
  --dark: #212121;
  --font-family-sans-serif: "Poppins", sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  /* font-family: "Poppins", sans-serif; */
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  color: #000000;
  text-align: left;
  background-color: #eaf6fe;
  font-family: "Roboto-Light", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 25px;
  margin-bottom: 0.5rem;
  font-weight: 800 !important;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

a {
  text-decoration: none;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
  background-color: rgb(92, 95, 113);
}

/* Customise CSS  */

.text-right {
  text-align: right;
}

/* Navbar CSS Start */

.theme-top-navbar {
  height: 10px;
  background-color: var(--primary-color);
}

navbar {
  padding: 10px;
}

navbar .theme-logo img {
  height: 45px;
}
navbar .theme-thirdlogo img {
  display: block;
  height: 45px;
  margin: auto;
  width: 50%;
  float: right;
}

navbar .theme-searchbar form input {
  padding: 10px;
  height: 50px;
  font-size: 18px;
  border-radius: 0px;
  border: none;
  outline: none;
  border-bottom: 2px solid var(--primary-color);
  width: 100%;
}
navbar .theme-searchbar .global_search_form {
  position: relative;
}
navbar .theme-searchbar .global_search_form i {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 20px;
}

.theme-secondLogo {
  text-align: right !important;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  navbar {
    padding: 0px;
  }

  .theme-logo {
    padding: 7px 2px 15px 0px;
  }
  .theme-logo img {
    padding: 7px 2px 15px 0px;
    width: 100%;
    height: 65px !important;
  }

  .theme-secondLogo a img {
    width: 100%;
  }

  navbar .theme-searchbar form input {
    margin-bottom: 10px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}

/* Navbar CSS End */
/* Menu Start */

.menu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.menu::-webkit-scrollbar-track {
  background: var(--secondary-color);
  border-radius: 1px;
}

.menu::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.menu {
  background-color: var(--primary-color);
  overflow-x: scroll;
  position: sticky;
  top: 0;
  z-index: 9;
}

.menu .menu-parent {
  display: inline-flex;
}
.menu .menu-parent .menu-child {
  padding: 15px;
  font-size: 14px;
}

.menu .menu-parent .menu-child a {
  color: white;
}
.menu-child-icon {
  position: absolute;
  right: 10px !important;
}

.menu-child-icon img {
  height: 16px;
  width: 35px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .menu-child-icon {
    position: absolute;
    right: 10px !important;
    top: 25px;
  }
  .menu-child-icon a {
    color: var(--dark);
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  /* .menu{
        position: relative;
    } */
}

/* Menu End */
/* Left Sidebar Start */

.theme_left_sidebar {
  background-color: white;
  /* border-radius: 10px; */
  padding: 10px;
}

.position_sticky {
  position: sticky;
  top: 61px;
  z-index: 1;
  overflow-y: scroll;
  height: 520px;
}

.theme_left_sidebar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.theme_left_sidebar::-webkit-scrollbar-track {
  background: var(--secondary-color);
  border-radius: 1px;
}

.theme_left_sidebar::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.left_sidebar_head .left_sidebar_head_title {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px;
  font-weight: 700;
  margin-top: 15px;
}

.theme_left_sidebar .left_sidebar_body .sidebar-item {
  background-color: var(--white);
  border: 1px solid var(--white);
  margin-bottom: 5px;
  border-radius: 5px;
}

.theme_left_sidebar .left_sidebar_body .question {
  width: 100%;
  padding: 5px 5px 5px 10px;
  text-align: left;
  background-color: #eaf6fe;
  border: none;
  font-size: 13px;
  cursor: pointer;
  border-radius: 0px;
  display: flex;
  align-items: center;
}

.theme_left_sidebar .left_sidebar_body .question:hover {
  background-color: #e0e0e0;
}
.theme_left_sidebar .left_sidebar_body .question-bold {
  font-weight: 600;
  font-size: 14px;
}

.theme_left_sidebar .left_sidebar_body .quest-link {
  text-decoration: none;
  color: #000000;
  flex-grow: 1;
}

.theme_left_sidebar .left_sidebar_body .toggle-icon {
  margin-right: 0px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  color: var(--primary-color);
}

.theme_left_sidebar .left_sidebar_body .toggle-answer {
  display: none;
}

.theme_left_sidebar .left_sidebar_body .toggle-answer p {
  margin: 2px 0px;
  padding: 5px;
  background-color: #fafafa;
  font-size: 16px;
  border-top: 1px solid #ddd;
}

.theme_left_sidebar .left_sidebar_body .toggle-answer a {
  color: var(--secondary-color);
  text-decoration: none;
}

.theme_left_sidebar .left_sidebar_body .toggle-answer a:hover {
  text-decoration: underline;
}
.theme_left_sidebar .left_sidebar_body .toggle-answer a:hover > p {
  background-color: #eaf6fe;
}

/* Left Sidebar End */
/* Theme Main Content Area Start */
.theme-bredicrumb {
  margin: 20px 0px 0px 20px;
  position: sticky;
  top: 61px;
  background-color: #eaf6fe;
  z-index: 9;
}

.theme-bredicrumb a {
  color: var(--secondary-color);
}

footer {
  margin: 0px 20px 30px 20px;
  background-color: var(--white);
}
.theme_main_content_area {
  margin: 0px 20px 30px 20px;
  background-color: var(--white);
  overflow-y: scroll;
  height: 700px;
}
.theme_main_content_area .theme-sub-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.theme_main_content_area .theme-main-title {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
}
.theme_main_content_area ul li {
  list-style-type: square;
  line-height: 1.9;
}

.theme_main_content_area .quick-access {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
}

.prev_and_next_button .previous_btn {
  float: left;
}

.prev_and_next_button .next_btn {
  float: right;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .theme-bredicrumb {
    font-size: 13px;
    margin: 0px;
    padding: 20px 2px 0px 2px;
  }
  footer {
    margin: 0px;
  }

  .theme_main_content_area {
    margin: 0px;
    padding: 20px 10px;
  }

  .theme_main_content_area .theme-sub-title {
    font-size: 17px;
  }

  .theme_main_content_area .theme-main-title {
    font-size: 25px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .theme-bredicrumb {
    font-size: 13px;
    margin: 0px;
    padding: 20px 2px 0px 2px;
  }

  footer {
    margin: 0px;
  }
  .theme_main_content_area {
    margin: 0px;
    padding: 20px 10px;
  }
}

@media only screen and (min-width: 768px) {
  .theme-bredicrumb {
    font-size: 14px;
    margin: 0px;
    padding: 20px 2px 0px 20px;
  }

  footer {
    margin: 0px 20px 30px 20px;
  }

  .theme_main_content_area {
    padding: 30px 30px;
    margin: 0px 20px 30px 20px;
  }
}

@media only screen and (min-width: 992px) {
  .theme_main_content_area {
    padding: 30px 50px;
    margin: 0px 20px 30px 20px;
  }
  footer {
    margin: 0px 20px 30px 20px;
  }
  .theme-bredicrumb {
    font-size: 15px;
    margin: 0px;
    padding: 20px 2px 0px 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .theme-bredicrumb {
    font-size: 15px;
    padding: 20px 2px 0px 40px;
  }

  .theme_main_content_area {
    padding: 30px 100px;
    margin: 0px 40px 30px 40px;
  }
  footer {
    margin: 0px 40px 30px 40px;
  }
}

/* Theme Main Content Area End */

/* Footer CSS Start  */

.main-footer-section {
  padding: 10px 10px;
  margin-bottom: 10px;
}
.main-footer-button a {
  background-color: darkblue;
  color: white;
}

.second-footer {
  background-color: lightgrey;
  padding: 10px;
  margin-bottom: 50px;
  font-size: 14px;
}

/* Footer CSS End  */
