:root {
  --level-1: #FBAD48;
  --level-2: #f5cc7f;
  --level-3: #7b9fe0;
  --level-4: #f27c8d;
  --black: black;
  --level-1_2:#F37E5D;
  --level-1_3:#30B2D4;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.orag_container {
    padding: 0px 40px !important;
}

ol {
  list-style: none;
}

body {
  /* text-align: center; */
  /* font-family: "Inter", sans-serif; */
}

.container {
  max-width: 1000px;
  padding: 0 10px;
  margin: 0 auto;
}

.rectangle {
  position: relative;
     padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* LEVEL-1 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.level-1 {
  width: 28%;
    margin: 0 auto 20px;
  background: var(--level-1);
      font-size: 16px;
    border-radius: 10px;
    background-color: #FBAD48;
    font-weight: 700;
    display: grid;
    justify-content: center;
    align-items: center;
    height: 70px;
}

.level-1::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: var(--black);
}

.level-1_2{
    background-color: #F37E5D !important;
    margin: 0 auto 20px !important;
}
.level-1_3{
    background-color: #30B2D4 !important;
    margin: 0 auto 40px !important;
}
.lel_sub{
    font-size: 14px;
    font-weight: 400 !important;
}
/* LEVEL-2 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.level-2-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.level-2-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 25%;
  width: 50%;
  height: 2px;
  background: var(--black);
}

.level-2-wrapper::after {
  display: none;
  content: "";
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: calc(100% + 20px);
  height: 2px;
  background: var(--black);
}

.level-2-wrapper li {
  position: relative;
}

.level-2-wrapper > li::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: var(--black);
}

.level-2 {
      width: 60%;
    padding: 18px 0px;
  margin: 0 auto 40px;
  background: var(--level-2);
}

.level-2::before {
  /* content: ""; */
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: var(--black);
}

.level-2::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-100%, -50%);
  width: 20px;
  height: 2px;
  background: var(--black);
}
.level-2{
    font-size: 16px;
    border-radius: 10px;
    background-color: #A6C355 !important;
}

/* LEVEL-3 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.level-3-wrapper {
  position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    width: 100%;
    margin: 0 auto;      
}

.level-3-wrapper::before {
  content: "";
  position: absolute;
top: -20px;
   left: calc(38% - 170px);
    width: calc(76% + 9px);
  height: 2px;
  background: var(--black);
}

.level-3-wrapper > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 2px;
  height: 20px;
  background: var(--black);
}

.level-3 {
  margin-bottom: 20px;
  background: var(--level-3);
     font-size: 14px;
    border-radius: 10px;
    background-color: #707070 !important;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* LEVEL-4 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.level-4-wrapper {
  position: relative;
  width: 80%;
  margin-left: auto;
}

.level-4-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 2px;
  height: calc(100% + 20px);
  background: var(--black);
}

.level-4-wrapper li + li {
  margin-top: 20px;
}

.level-4 {
  font-weight: normal;
  background: var(--level-4);
}

.level-4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-100%, -50%);
  width: 20px;
  height: 2px;
  background: var(--black);
}

/* LEVEL-5 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.level-5-wrapper {
  position: relative;
  width: 80%;
  margin-left: auto;
}

.level-5-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 2px;
  height: calc(100% + 20px);
  background: var(--black);
}

.level-5-wrapper li {
  margin-top: 20px !important;
}

.level-5 {
  font-weight: normal;
  background: var(--level-4);
}

.level-5::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-100%, -50%);
  width: 20px;
  height: 2px;
  background: var(--black);
}

/* MQ STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 700px) {
  .rectangle {
    padding: 20px 10px;
  }

  .level-1,
  .level-2 {
    width: 100%;
  }

  .level-1 {
    margin-bottom: 20px;
  }

  .level-1::before,
  .level-2-wrapper > li::before {
    display: none;
  }
  
  .level-2-wrapper,
  .level-2-wrapper::after,
  .level-2::after {
    display: block;
  }

  .level-2-wrapper {
    width: 90%;
    margin-left: 10%;
  }

  .level-2-wrapper::before {
    left: -20px;
    top: -40px;
    width: 2px;
    height: calc(100% + 40px);
  }

  .level-2-wrapper > li:not(:first-child) {
    margin-top: 50px;
  }
}

/* formalization_css */
.formalization_hdng{
    font-weight: 700;
}
.aw_section{
    background: #FFE2B6 0% 0% no-repeat padding-box;
border-radius: 10px;
}
.aw_p1{
    margin-bottom: 0px !important;
    font-weight: 700;
}
.aw_p2{
    margin-bottom: 0px !important;
}
.aw_p1 span{
    border-bottom: 2px solid #000;
}
.aw_tw_crd{
    background: #F6EDDD 0% 0% no-repeat padding-box;
border-radius: 10px;
    height: 200px;
    /* overflow: auto; */
}
.he_cd_bx{
     background: #FFE2B6 0% 0% no-repeat padding-box;
border-radius: 10px;
    height: 230px;
}
.he_btn button {
    background: #4B2300 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border: 2px solid #4B2300;
    border-radius: 27px;
    color: #fff;
    width: 25%;
    padding: 4px;
}
.msme_lop p{
    margin-bottom: 0px !important;
}
.msme_dxc{
    height: 150px;
    overflow: auto;
}
.lop_p1{
    font-weight: 600;
}
.msme_topic{
    background: #D7E2EC 0% 0% no-repeat padding-box;
border-radius: 10px;
}
.msme_acrd_sec{
    font-size: 14px;
    font-weight: 700;
}
.formalization_section{
    background: url("../img/fnd_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
}
.msme_btn_ul-sec{
    height: 140px;
    overflow: auto;
}
@media(max-width:764px){
    .msme_topic{
        padding: 0px 15px 15px 15px !important;
    }
}
@media(max-width:560px){
.he_btn button{
    width: 50%;
}
}
/* scroller_section */
::-webkit-scrollbar {
  width: 3px !important;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}