.triangle {
    width: 200px;
    height: 200px;
    background: linear-gradient(to bottom right, rgb(8, 119, 23) 0%, rgb(8, 119, 23) 50%, white 50%, white 100%);
}
body {
  background: rgb(255, 255, 255)
}
a.nolink:link, a.nolink:hover, a.nolink:visited{
  text-decoration: none;
  color: black;
}
.ttext, .ttextt, .ttt { 
  text-decoration: none; 
}
.title {
  position: absolute; /* must have this */
  background: #000;
  background: rgba(0,0,0,.7);
  color: #fff;
  font: normal 11px/15px sans-serif;
  padding: 3px 10px;
  border-radius: 3px;
  white-space: nowrap;
  z-index: 1000;
}
#curved-corner-bottomleft,
#curved-corner-bottomright,
#curved-corner-topleft,
#curved-corner-topright {
  width: 400px;
  height: 400px;
  overflow: hidden;
  position: relative;
  /* background-color: rgb(8, 119, 23); */
  background-color: rgb(255, 136, 0);
}
#box {
  background-color: white
}
#curved-corner-bottomleft:before,
#curved-corner-bottomright:before,
#curved-corner-topleft:before,
#curved-corner-topright:before {
  content: "";
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  border-radius: 50%;
}
#curved-corner-bottomleft:before {
  bottom: 0;
  left: 0;
  box-shadow: -50px 50px 0 0 red;
}
#curved-corner-bottomright:before {
  bottom: 0;
  right: 0;
  box-shadow: 150px 100px 0 0 white;
}
#curved-corner-topleft:before {
  top: 0;
  left: 0;
  box-shadow: -50px -50px 0 0 red;
}
#curved-corner-topright:before {
  top: 0;
  right: 0;
  box-shadow: 50px -50px 0 0 red;
}
.labelText{
  color: black !important;
}
.themenu {
    background-color: orange !important;
    color: black !important;
    border-bottom-left-radius: 40px;
    padding-right: 0px;
}
.b-b {
  border-color: orange !important;
}
@media (width <= 530px) {
  #curved-corner-bottomright{
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: relative;
    background-color: blue;
  }
  #curved-corner-bottomright:before {
    content: "";
    display: block;
    width: 200%;
    height: 200%;
    position: absolute;
    border-radius: 50%;
  }
  #curved-corner-bottomright:before {
    bottom: 0;
    right: 0;
    box-shadow: 150px 100px 0 0 white;
  }
  }