.demo-container-1{
  width: 100%;
  height: 450px;
  background-color:#f2f2f2;
  position: relative;
}                           
.container-1{
  width: 300px;
  height: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  background-image: url(images/freehand.jpg);
  border-bottom-left-radius: 100px;
} 
.container-2{
  width: 166px;
  height: 166px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  background-color: #66cc99;
  border-bottom-left-radius: 100px;
}
.demo-container{
  width: 100%;
  padding: 20px;
}
.box-wrap{
  width: 45%;
  height: 300px;
  display: inline-block;
  border-color: #C6CED8;
  border-width: 10px;
  border-style: solid;;
  margin: 10px;
  position: relative;
}
.box-contanier{
  width: 100%;
  height: 270px;
  position: absolute;
  top: 0;
  left: 0;
}

.desc{
  width: 100%;
  height: 30px;
  background-color: #C6CED8;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  line-height: 30px;
  padding-top: 5px;
}

.box, .box-rectangle{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  border-width: 5px;
  border-style: solid;
  border-color: #C6CED8;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.box-rectangle{
  width: 250px;
  height: 150px;
}
.box1{
   border-bottom-left-radius: 50px;
}
.box2{
   border-bottom-left-radius: 50px 25px;
}
.box3{
   border-bottom-left-radius: 40%;
}
.box4{
   border-bottom-left-radius: 40%;
}
.box5{
   border-bottom-left-radius: 40%;
   border-style: double;
   background-clip: content-box;
   background-color: #66cc99;
}
.box6{
   border-bottom-left-radius: 40%;
   border-style: dashed;
   background-clip: content-box;
   background-color: #66cc99;
}
@media screen and (max-width: 1120px){
  .container-2{
    width: 120px;
    height: 120px;
    border-bottom-left-radius: 60px;
    font-size: 1.2em;
  }
}
@media screen and (max-width: 768px){
  .box-wrap{
    display: block;
  }
  .box4{
    width: 125px;
    height: 75px;
  }
  .container-2{
    width: 105px;
    height: 105px;
    border-bottom-left-radius: 60px;
  }
}