.comment {
  border: 1px solid #0000002b; 
  padding: 10px;         
  margin-top: 10px;         
  -webkit-border-radius: 5px;         
  -moz-border-radius: 5px;         
  border-radius: 5px;         
  display: flex;         
  flex-wrap: wrap;     
  }      
  
  .comment .com_h {         
    font-size: 1.4rem;         
    width: 100%;         
    display: block;        
    color: #df7e12;         
    border-bottom: 1px solid #0000002b;         
    margin-bottom: 10px;         
    padding: 5px;     
    }      
    
    .com_l {         
      width: 70%;     
      }      
      
    .com_r {         
      text-align: center;         
      width: 30%;         
      min-width: 180px;         
      align-content: center;     
      }      
    
    .date_cont {         
      display: flex;     
      }      
    
    .date_cont .date {         
      font-weight: 700;         
      font-size: 1.2rem;         
      margin-top: -3px;         
      color: #df7e12;         
      margin-left: 10px;     
      }  
      

  .c_cont {
    padding: 5% 10%;
    display: grid;
  }

  .input {
    border: 1px solid #0000002b;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    height: 40px;
    position: relative;
  }

  .input input {
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  label.text {
    position: absolute;
    left: 9px;
    top: -10px;
    font-size: 0.8rem;
    background: #fff;
    padding: 0px 5px;
    color: #676968;
  }

  .input:hover {
    border: 1px solid #c1c1c1;
  }

  .input:focus-within {
    border: 1px solid #df7e12;
  }

  .gr_2 {
    display: grid;
    gap: 20px;
  }

  .contact_title {
    padding: 10px;
  }

  .contact {
    font-weight: 600;
  }

  .contacts svg {
    width: 20px;
    height: 20px;
    color: #df7e12;
    fill: currentColor;
  }

  .attribute-row {
    display: grid;
    gap: 10px;
    margin: 0;
    background: #fff;
  }

  textarea {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 10px 15px;
  }


  .input.textarea {
    height: auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    min-height: 200px;
  }

  a {
    text-decoration: none;
  }

  h1 {
    font-size: 1.4rem;
    width: 100%;
    display: block;
    color: #df7e12;
    border-bottom: 1px solid #0000002b;
    margin-bottom: 10px;
    grid-column: 1 / -1;
  }

  input:required+label::after {
    content: ' *';
    color: #d84f19;
  }

  .form-alert.is-error {
    font-weight: 700;
    color: #d84f19;
    margin-bottom: 10px;
  }

  .form-alert.is-success {
    font-weight: 700;
    color: #5b8548;
    margin-bottom: 10px;
  }

  .contacts {
    padding: 10px;
    display: flex;
    align-items: center;
  }

  .contact span {
    color: #8B59B3;
}

  @media only screen and (max-width: 768px) {
    .c_cont {
      padding: 10px;
    }
  }

      
      @media only screen and (max-width: 768px) {          
      .com_r,.com_l {             
        width: 100%;         
        }          
      .com_r {             
        padding-top: 20px;         
        }     
      } 
   