.notice{
    padding-bottom: 40px;
      .notice_wrapper{
          .noticeBoard{
            width: 100%;
            height: 430px;
            border: 3px solid $primaryColor;
            border-radius: 10px;
            padding: 20px 20px;
            background-color: $white;
               .noticeHeading{
                     padding: 5px 0;
                     display: flex;
                     align-items: center;
                     justify-content: center;
                     img{
                      width: 35px;  
                     }
                     span{
                      font-size: 23px;
                      color: $primaryColor;
                      font-weight: 600;
                      padding: 0 5px;
                     }
                }
                .noticeList{
                  padding-top: 20px;
                  ul{
                    li{
                      font-size: 17px;
                      color: rgb(24, 23, 23);
                      font-weight: 500;
                      padding-bottom: 10px;
                      line-height: 27px;
                      
                      i{
                        font-size: 8px;
                        padding-right: 10px;
                      }
                    }
                  }
                }
          }
          .Person{
            width: 100%;
            height: 430px;
            border: 3px solid $primaryColor;
            border-radius: 10px;
            padding: 30px 20px;
            position: relative;
            background-color: $white;
            .profileImg{
                height: 220px;
                width: 220px;
                border-radius: 50%;
                margin: 0 auto;
                border: 3px solid $primaryColor;
              img{
                 max-height: 100%;
                 width: 100%;
                 border-radius: 50%;
              }
            }
            .profileText{
              padding-top: 30px;
              h4{
                font-size: 23px;
                color: $primaryColor;
                font-weight: 600;
                font-family: $font-1;
              }
              p{
                font-size:16px;
                color: $black;
                font-weight: 500;
                font-family: $font-1;
              }
            }
            .icirclesProfile{
              display: flex;
              align-items: center;
              position: absolute;
              bottom: 10px;
              left: 70px;
              a{
                font-size: 13px;
                color: #333;
                font-weight: 500;
                font-family: $font-1;
                img{
                  width: 40px;
                }
              }
            }
            .IIcon{
               position: absolute;
               top: 10px;
               left: 10px;
              img{
                width: 30px;
              }
            }
          }
      }
}