/* breadcrub style */
.hvr-effect:hover {
  text-decoration: underline !important;
}
/* close */

/* styling some layout heading and example hading and reset_ct innercontent */

.reset_ct.py-3{
  text-align: start;
}
.example_heading {
  text-align: start;
  margin: 2px -2px 12px;
  padding: 2px 8px;
  background: hsl(50, 100%, 96%);
  border-radius: 8px;
  color: #333;
  font-size: 20px !important;
}
.heading {
  display: block;
  text-align: start;
  font-size: 1.5em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  font-weight: 500;
  color: rgb(0, 0, 255);
}
.same-font {
    color: #007bff !important;
}
.same-font:hover {
    color: #0056b3;
}
.intro,.into{
  text-align: start;
}
.heading_section {
  display: flex;
  flex: 0 1 auto;
  flex-flow: row wrap;
  margin-right: 0px;
  margin-left: 0px;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 10px 10px;
  background: rgb(255, 255, 255);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 12px;
  overflow: hidden;
}
.calculation a {
  color: #007bff !important;
}
.calculation{
  text-align: start;
}
.anchor_go_top_home {
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: rgb(31, 66, 255) !important;
  text-align: left;
  font-style: normal;
}
.reset_ct .exampleImg {
  text-align: center;
}
.reset_ct .exampleImg img {
  max-width: 300px;
}

/* close */

/* Math Example styling  and styling 4 by 5*/
.intbl {
  display: inline-table;
  text-align: center;
  vertical-align: 40%;
  margin: 0 2px;
  border-collapse: collapse;
}
em {
  display: table-row;
  text-align: center;
  border-bottom: solid #333 1px;
  font-size: 93%;
  font-style: inherit;
  line-height: 130%;
}
strong {
  display: table-row;
  text-align: center;
  font-weight: inherit;
  font-size: 93%;
  line-height: 110%;
}
.example {
  margin: 20px 0 30px 0px;
  background-color: hsl(214, 100%, 95%);
  padding: 5px 14px 1px;
  border-radius: 10px;
  box-shadow: 4px 4px 3px hsl(214, 100%, 25%);
  overflow: hidden;
}
@media (max-width: 768px) {
  .example {
    margin: 0;
  }
} /* close */

/* section-related-links */
article {
  padding: 15px;
  border-bottom: 1px solid rgb(233, 233, 233);
}
.article_heading {
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  text-align: left;
  font-style: normal;
  margin-bottom: 0;
}
.seciton-related-links {
  flex-direction: column;
  padding: 0px;
  margin: 16px 0px;
  display: block;
  background: rgb(255, 255, 255);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 12px;
  overflow: hidden;
}
.percentage-related-links {
  padding: 10px 20px;
  text-align: left;
}
/* close */

/* convert a decimal to fraction styling */
.fraction_steps li {
  color: hsl(214, 100%, 25%);
  list-style-type: disc;
  padding-bottom: 7px;
}
.large {
  color: hsl(50, 100%, 28%);
  font-size: 20px;
  font-weight: 600;
}
.larger {
  color: hsl(214, 65%, 46%);
  font-size: 19px;
}


/*Time to add downward connectors from parents*/
.tree ul ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 60%;
  border-left: 2px solid #000;
  width: 0;
  height: 20px;
}

.tree ul {
  padding-top: 20px;
  position: relative;
}

.tree li {
  float: left;
  text-align: center;
  list-style-type: none;
  position: relative;
  padding: 20px 0px 0 3px;
}

/*We will use ::before and ::after to draw the connectors*/

.tree li::before,
.tree li::after {
  content: '';
  position: absolute;
  top: 0;
  right: 40%;
  border-top: 2px solid #000;
  width: 60%;
  height: 20px;
}
.tree li::after {
  right: auto;
  left: 50%;
  border-left: 2px solid #000;
}

/*We need to remove left-right connectors from elements without 
any siblings*/
.tree li:only-child::after,
.tree li:only-child::before {
  display: none;
}

/*Remove space from the top of single children*/
.tree li:only-child {
  padding-top: 0;
}

/*Remove left connector from first child and 
right connector from last child*/
.tree li:first-child::before,
.tree li:last-child::after {
  border: 0 none;
}
/*Adding back the vertical connector to the last nodes*/
.tree li:last-child::before {
  border-right: 2px solid #000;
}

.tree li a {
  padding: 6px 10px;
  text-decoration: none;
  color: #000;
  font-family: arial, verdana, tahoma;
  font-size: 20px;
  font-weight: 550;
  display: inline-block;
  background: #00c8ff;
  min-width: 60px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  position: relative;
  left: 10%;
}

.tree a:last-child {
  background: #ffb100;
  min-width: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  left: 0%;
}

.tree li:last-child > a:last-child {
  left: 10% !important;
}

.faq-box {
  background-color: hsl(214, 100%, 95%);
  border-radius: 16px;
}

.faq-box li:first-child {
  padding-top: 25px;
}

.faq-box li:last-child {
  padding-bottom: 25px;
}

.example-box {
  position: relative;
  border-radius: 16px;
  box-shadow: rgb(226 235 229) 0px 3px 0px;
  padding: 5px 20px 0px;
  border-width: 2px 2px 5px;
  border-style: solid;
  border-color: rgb(235 226 234);
  border-image: initial;
  background: rgb(250 247 247);
  margin-bottom: 12px;
}

/* media for header-nav-bar */
@media (max-width: 992px) {
  .navbar {
    padding: 0.8rem 15px !important;
  }
  .navbar-nav .nav-item {
    padding: 0px;
  }
  .nav-link,
  .dropdown-item {
    text-align: left !important;
  }
  .dropdown-menu {
    transform: translateX(0px);
  }
  .dropdown-menu::before {
    left: 20% !important;
  }
}
.related_post_heading {
  width: 100%;
  font-size: 46px;
  text-align: center;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.24;
  letter-spacing: normal;
  color: rgb(17, 48, 78);
  margin-bottom: 45px;
  padding-top: 75px;
  display: inline-block;
}

/* Blog-card-footer styling */
.card-footer {
  border: none;
}
.wrapfooter {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.wrapfooter img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.wrapfooter .author-meta {
  /* flex: 1 1 auto; */
  padding: 0 15px;
}
.wrapfooter .author-meta a {
  font-size: 15px;
  color: #000;
  text-transform: capitalize;
}
.wrapfooter .post-read-more {
  flex: 50;
  text-align: right;
}
.Million_flexBox {
  display: flex;
  flex-direction: column;
  padding: 15px 25px;
  -webkit-box-align: center;
  align-items: center;
  background: linear-gradient(
    56.99deg,
    rgb(31, 66, 255) 0%,
    rgb(17, 56, 163) 100%
  );
}
.heading_section h2 {
  margin: 24px 0 10px;
  font-weight: 400 !important;
  font-size: 1.5rem !important;
  line-height: 37px !important;
}
.Million_flexBox p {
  display: block;
  font-size: 30px;
  line-height: 38px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  text-align: center;
  font-style: normal;
}
/* all as pages css */
.anchor_style {
  color: #007bff;
  font-family: 'Nunito', sans-serif;
}
.as-percentage-heading {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
}
.anchor_style:hover {
  color: #0d6efd;
  text-decoration: underline !important;
}
.todos {
  color: #0d6efd;
}
.todos:hover{
  color: #0056b3;
}
ul li {
  margin: 0px 0 5px !important;
}
.style-on li {
  list-style-type: disc!important;
}
.page-top-section {
  padding-top: 250px;
  padding-bottom: 40px;
  background: url(/assets/images/footer2-bg.jpg);
}
.page-top-nav a {
  color: #fff;
  text-transform: uppercase;
  padding: 0 15px;
}
.page-top-nav a:hover {
  color: white !important;
}
.section-gap {
  padding: 120px 0;
}

.style-on {
  list-style-type: disc !important;
}

.sub-heading {
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  font-size: 20px;
  position: relative !important;
  color: rgb(0, 0, 0) !important;
  font-weight: bold !important;
}
.tree {
  display: flex;
}
hr{
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: .25;
  border-top: 1px solid rgba(0,0,0,.1);

}
.breadcrumb{
  background: white;
  display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
}