
    .rcorners2 {
      border-radius: 25px;
      border: 2px solid #eaa911;
    }
    .rcorners3 {
      border-radius: 25px;
      border: 2px solid #eaa911;
      background-color: white;
    }
    .dropdown-submenu {
      position: relative;
    }

    .dropdown-submenu a::after {
      transform: rotate(-90deg);
      position: absolute;
      right: 6px;
      top: .8em;
    }

    .dropdown-submenu .dropdown-menu {
      top: 0;
      left: 100%;
      margin-left: .1rem;
      margin-right: .1rem;
      background-color: #343a40;
    }

    .context-menu {
      position: absolute;
      text-align: center;
      background: lightgray;
      border: 1px solid black;
      cursor: pointer;
      z-index:100;
    }

    .context-menu ul {
      padding: 0px;
      margin: 0px;
      min-width: 150px;
      list-style: none;
    }

    .context-menu ul li {
      padding-bottom: 7px;
      padding-top: 7px;
      border: 1px solid black;
    }

    .context-menu ul li a {
      text-decoration: none;
      color: black;
    }

    .context-menu ul li:hover {
      background: #eaa911;
    }

    .bg_range {
      background-color: rgba(255, 255, 255, 0);
    }
    .bg_range_image{
      background-image: url("img/ranges_bg.jpg");
      background-size: cover;
    }
    .text_color_range{
      /*-webkit-text-stroke: 0.01px white;*/
      color: #eaae1a;
    }

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  --color: rgba(30, 30, 30);
  --bgColor: rgba(245, 245, 245);
  color: var(--color);
  background: var(--bgColor);
}

.ul1 {
  --col-gap: 2rem;
  --row-gap: 2rem;
  --line-w: 0.25rem;
  display: grid;
  grid-template-columns: var(--line-w) 1fr;
  grid-auto-columns: max-content;
  column-gap: var(--col-gap);
  list-style: none;
  width: min(60rem, 90%);
  margin-inline: auto;
}

/* line */
.ul1::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 20;
  background: rgb(225, 225, 225);
  border-radius: calc(var(--line-w) / 2);
}

/* columns*/

/* row gaps */
.ul1 .li1:not(:last-child) {
  margin-bottom: var(--row-gap);
}

/* card */
.ul1 .li1 {
  grid-column: 2;
  --inlineP: 1.5rem;
  margin-inline: var(--inlineP);
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
}

/* date */
.ul1 .li1 .date {
  --dateH: 3rem;
  height: var(--dateH);
  margin-inline: calc(var(--inlineP) * -1);

  text-align: center;
  background-color: var(--accent-color);

  color: white;
  font-size: 1.25rem;
  font-weight: 700;

  display: grid;
  place-content: center;
  position: relative;

  border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}

/* date flap */
.ul1 .li1 .date::before {
  content: "";
  width: var(--inlineP);
  aspect-ratio: 1;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;

  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}

/* circle */
.ul1 .li1 .date::after {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  background: var(--bgColor);
  border: 0.3rem solid var(--accent-color);
  border-radius: 50%;
  top: 50%;

  transform: translate(50%, -50%);
  right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}

/* title descr */
.ul1 .li1 .title,
.ul1 .li1 .descr {
  background: var(--bgColor);
  position: relative;
  padding-inline: 1.5rem;
}
.ul1 .li1 .title {
  overflow: hidden;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  font-weight: 500;
}
.ul1 .li1 .descr {
  padding-block-end: 1.5rem;
  font-weight: 300;
}

/* shadows */
.ul1 .li1 .title::before,
.ul1 .li1 .descr::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  left: 50%;
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, 50%);
}
.ul1 .li1 .title::before {
  bottom: calc(100% + 0.125rem);
}

.ul1 .li1 .descr::before {
  z-index: -1;
  bottom: 0.25rem;
}

@media (min-width: 40rem) {
  .ul1 {
    grid-template-columns: 1fr var(--line-w) 1fr;
  }
  .ul1::before {
    grid-column: 2;
  }
  .ul1 .li1:nth-child(odd) {
    grid-column: 1;
  }
  .ul1 .li1:nth-child(even) {
    grid-column: 3;
  }

  /* start second card */
  .ul1 .li1:nth-child(2) {
    grid-row: 2/4;
  }

  .ul1 .li1:nth-child(odd) .date::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }

  .ul1 .li1:nth-child(odd) .date::after {
    transform: translate(-50%, -50%);
    left: calc(100% + var(--col-gap) + var(--line-w) / 2);
  }
  .ul1 .li1:nth-child(odd) .date {
    border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
  }
}

/*.b_image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.8)) ,url('../img/about/SBII_History.png');
  background-repeat: no-repeat;
  background-size:cover;
}*/

.parallax {
  /* The image used */
  background-image: linear-gradient(rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.8)) ,url("../img/about/SBII_History.png");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.imgCSS{
  align-content: center;
  border: 3px solid #fcba03;
  border-radius: 25px;
  width: 100%;
  height: 100%;
  transition: transform .5s; /* Animation */
}
.imgCSS:hover{
  transform: scale(1.1);
}
.Viewbtn{
  background-color: #fcba03;
  padding: 15px 32px;
  border-radius: 10px;
}
.pdfCSS{
  width: 550px;
  height: 500px;
}