.recent-projects{
    margin: 100px 0;
}
.whatsapp__box {
    position: fixed;
    bottom: 30px;
    z-index: 99999;
    outline: none;
    left: 25px;
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    background: #25d366;
    border-radius: 50%;
    border: none;
    cursor: pointer;
  }
  .whatsapp__box i {
    font-size: 36px;
    color: #fff;
    z-index: 10;
  }
  .whatsapp__box::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #25d366;
    border-radius: 50%;
    z-index: 1;
    animation: animation 2s infinite;
  }
  @keyframes animation {
    0% {
      transform: scale(1);
      opacity: .9;
      z-index: 1;
    }
    100% {
      transform: scale(1.6);
      opacity: 0;
      z-index: 1;
    }
  }
  .whatsapp_chatbox_show{
      display: block;
  }
  .whatsapp_chat_box{
      width: 300px;
      height: 300px;
      background-color: #dcf8c6;
      position: fixed;
      bottom: 50px;
      left: 25px;
      z-index: 99999;
      border-radius: 25px;
      display: none;
  }
  .whatsapp_chatbox_header{
      height: 70px;
      width: 100%;
      background-color: #075e54;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        padding: 0 15px;
        display: flex;
        align-items: center;
    }
  .img__circle{
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid #fff;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  .img__circle img{
      width: 100%;
      height: 100%;
  }
  .chat__title{
      width: 70%;
      margin-left: 15px;
      font-family: sans-serif;
    }
    
    
 
  .chat__title h5{
      font-weight: 500;
      color: #fff;
      margin: 0;
      font-family: sans-serif;
  }
  .chat__title p{
      margin-top: 3px;
      font-weight: 300;
      font-size: 10px;
      color: #fff;
      margin: 0;
      font-family: sans-serif;
      line-height: 15px;
  }
  .chat_box_close{
      color: #fff;
      cursor: pointer;
      align-self: flex-start;
      margin-top: 5px;
  }
  .whatsapp_chatbox_body{
      height: 160px;
      width: 100%;
      position: relative;
  }
  .message__box{
      background-color: #fff;
      width: 70%;
      height: 120px;
      position: absolute;
      left: 10px;
      top: 10px;
      border-radius: 10px;
      box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
      padding: 0 10px;
      display: flex;
      flex-direction: column;
  }
  .message__box p:first-child{
      font-size: 12px;
      font-family: sans-serif;
  }
  .message__box p:nth-child(2){
      margin: 0 0 10px 0;
      font-family: sans-serif;
  }
  .message__box p:not(:first-child){
      color: #000;
      font-family: sans-serif;
      font-size: 14px;
  }
  .message__box p:nth-child(3){
    margin: 0;
    font-family: sans-serif;
}
.message__box span{
    font-size: 12px;
    align-self: flex-end;
    font-family: sans-serif;
}
  .whatsapp_chatbox_footer{
  position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
  }
  .whatsapp_chatbox_footer a{
      text-decoration: none;
      color: #fff;
      background-color: #25d366;
      border-radius: 25px;
      padding: 10px;
      font-family: sans-serif;
  }
  .whatsapp_chatbox_footer a i{
      margin-left: 5px;
  }
  .for-mobile-lang{
    display: none!important;
  }
  @media (max-width:960px){
    #pt-main-menu{
      height: 100vh;
    }
    .for-mobile-lang{
      display: block!important;
      padding: 15px;
    }
  }
