section#s2 {
  padding: var(--padSide);
  margin-top: var(--mergPad);
  padding-bottom: var(--mergPad);
  padding-top: var(--mergPad);
  
  position: relative;
  border: solid 0.2px rgba(50, 50, 93, 0.25);
  background: linear-gradient(
    to right,
    #eeb96f 0%,
    #fddda8 10%,
    #fff3df 30%,
    #fff3df 70%,
    #fde7c0 80%,
    #fddda8 90%,
    #eeb96f 100%
  );
  display: grid;
  grid-auto-rows: min-content;
  gap: var(--mergPad);
  text-align: center;
}
section#s2 > div#title {
  display: grid;
  grid-auto-rows: min-content;
  gap: var(--titleGap);
}
#bread {
  display: none;
}
#bread_mobile{
  margin: auto;
  max-width: 100%;
}
section#s2 > img#leaf,
section#s2 > div#circle_1,
section#s2 > div#circle_2 {
  display: none;
}

/****** For Laptop *****/
@media screen and (min-width: 960px) {
  #bread {
    margin: auto;
    max-width: 100%;
    display: initial;
  }
  #bread_mobile{
    display: none;
  }

  section#s2 > img#leaf {
    display: initial;
    position: absolute;
    top: -200px;
    left: 0px;
  }
  section#s2 > div#title > p:last-child {
    text-align: center;
  }
  /*Circles*/
  section#s2 > div#circle_1 {
    display: initial;
    position: absolute;
    right: 0px;
    top: -275px;
    overflow: hidden;
    width: 350px;
    height: 550px;
  }
  section#s2 > div#circle_1::before {
    content: "";
    position: absolute;
    right: -200px;
    top: 0px;
    width: 350px;
    height: 350px;
    border-radius: 100%;
    border: 100px solid rgba(189, 117, 23, 0.1);
  }
  section#s2 > div#circle_2 {
    display: initial;
    position: absolute;
    left: 0px;
    bottom: -500px;
    overflow: hidden;
    width: 700px;
    height: 900px;
  }
  section#s2 > div#circle_2::before {
    content: "";
    position: absolute;
    left: -400px;
    bottom: 0px;
    width: 700px;
    height: 700px;
    border-radius: 100%;
    border: 100px solid rgba(189, 117, 23, 0.1);
  }
}
