*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container{
  width: 90%;
  margin: auto;
  overflow: hidden;
}

.heading {
    padding: 40px 0;
    color: #2694af;
    font-style: oblique;
    font-weight: bold;
  input{
    display: block;
    margin: auto;
    width: 150px;
    height: 40px;
    font-size: 23px;
    margin-top: 15px;
    margin-bottom: 15px;
    border: none;
    background: #2694af;
    color: #fff;
    border-radius: 15px;
  }
}
.Misbaha{
  padding-bottom: 60px;
  .boxs{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    .box{
      flex: 1 1 16rem;
      border: 2px solid #2694af;
      border-radius: 15px;
      overflow: hidden;
      position: relative;
      h3{
        background: #eee;
        padding: 10px;
        text-align: center;
        font-weight: 900;
        border-bottom: 1px solid #2694af;
        font-size: 25px;
      }
      input{
        display: block;
        margin: auto;
        border: none;
        width: 70px;
        height: 70px;
        background: #2694af;
        border-radius: 50%;
        font-size: 25px;
        color: #fff;
        margin-top: 25px;
        margin-bottom: 25px;
      }
      i{
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        margin: 25px 0;
        color: #2694af;
        cursor: pointer;
      }
    }
  }
}
::selection{
  background: #2694af;
  color: #fff;
}