.offer-advantages{
    background: #feb907;
    font-family: Ubuntu;
    font-style: normal;
    font-weight: 500;
    color: white;
    width: fit-content;
    padding: 5px 11px;
    border-radius: 10px;
    margin: auto;
    cursor: pointer;
    position: relative;
    margin-right: 10px;
    padding-top: 5px;
    padding-bottom: 6px;
    background: #525252;
    color: #feb907;
  }
    .offer-advantages svg{
      margin-right:5px;
    }
  
  .advantages-block{
    display: flex;
    padding:0 30px;
    padding-top: 15px;
    width: fit-content;

    }
    .offer-advantages:first-child{
      margin-left: 0;
    }

    .more_advantages_info{
          position: absolute;
          background: white;
          color: black;
          width: 176px;
          z-index: 9;
          padding: 11px;
          border-radius: 10px;
          -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
          -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
          box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
          left: calc(50% - 82px);
          top:50px;
    }

    .more_advantages_info::after{
      border: 20px solid transparent; border-top: 20px solid green;
        

      }

      .before_more_info{
        border: 10px solid transparent;
        border-bottom: 10px solid #2125291f;
        height: 20px;
        width: 20px;
        position: absolute;
        top: 28px;
        left: calc(50% - 10px);
      }
      .before_more_info, .more_advantages_info{
        display:none;
      }

      .offer-advantages:hover .more_advantages_info{
        display:block;
      }
      .offer-advantages:hover .before_more_info{
        display:block;
      }
      
      .img-advantages{
        display: inline;
        margin-right: 5px;
        width: 16px;
          }
    
         

      @media screen and (max-width: 410px) {
        .offer-advantages{
          padding-left: 5px;
          padding-right: 5px;
          text-align: center;
        }
        .more_advantages_info {
           left: calc(50% - 59px);
        }
        .offer-advantages .more_advantages_info{
          text-align:left;
        }
        .more_advantages_info{
           width: 143px;
        }
      }