* {
  padding: 0px;
  margin: 0px;
}
:root {
  --primary-color: #025536;
  --secondary-color: #1ca1a6;
  --dark-teal: #158283;
  --deeper-green: #014029;
  --primary-bg: #f1f1f1;
  --alert-color: #f28c28;
  --text-primary: #616161;
  --white: #fff;
  --border:#dee2e6;
}
@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/NotoSans-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Bengali";
  src: url("../fonts/NotoSans-Bengali-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "poppins";
  src: url("../fonts/poppins-regular.ttf") format("truetype");
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans Bengali", "Noto Sans",poppins,"Segoe UI", "Helvetica Neue",
    sans-serif;
  font-size: 15px;
  line-height: 1.5em;
  color: #000;
  box-sizing: border-box;
}

p {
  font-size: 1.15rem;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin: 10px 0;
}
.btn {
  background: var(--primary-color);
  color: var(--white);
}
.blueT {
  background: var(--secondary-color);
  color: var(--white);
}

.nbp3_codespan {
  color: #ed143d;
  background-color: #f1f1f1;
  padding-left: 4px;
  padding-right: 4px;
  font-size: 110%;
}

.nbp3_table_all {
  margin: 20px 0;
  border: 1px solid #ccc;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  display: table;
  font-size: 16px;
}

.nbp3_note {
  background: #ffffcc;
  padding: 20px;
  font-size: 1rem;
}

ul.lineHight2 {
  line-height: 2rem;
}
.b_headings {
  font-size: 105px;
  border-radius: 15%;
  border: 2px solid white;
  padding: 20px 30px 25px 30px;
  font-weight: 600;
  position: relative;
  top: 6rem;
  color: #fff;
}
.b_headings:hover {
  color: white;
}
a.btn.b_btn {
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin: 8rem 0 1rem 0;
  border: 1px solid white;
}
a.btn.b_btn:hover {
  background: #fff;
  color: #000;
}
.card-body {
  padding-bottom: 35px !important;
}

/* JAVA PAGE CSS*/
.token.atrule,
.token.attr-value,
.token.keyword {
  color: #07a;
}
.token.function,
.token.class-name {
  color: #dd4a68;
}
.token.punctuation {
  color: #999;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #690;
}
.map_image img {
  width: unset;
}

/* For Example section */
.example {
  margin: 5% 0;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  background: var(--primary-bg);
}
.example_title {
  padding: 5% 0 5% 5%;
  color: var(--text-primary);
}
.example_body {
  border-left: 3px solid #4c4faf;
  margin: 0% 5% 0 5%;
  background: #fff;
}
.example_body div:nth-child(2){
  padding: 8px;
}
.example_footer {
  padding: 3%;
}
.example_footer a {
  background: var(--primary-color);
  color: #fff;
}
.example_footer a:hover {
  background: var(--deeper-green);
  color: #fff;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
}