.section__rev {
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .section__rev {
    padding: 60px 0;
  }
}
.section__rev h3 {
  font-size: 44px;
  line-height: 48px;
  margin-bottom: 40px;
  font-weight: 400;
}
.section__rev #submit {
  max-width: 178px;
  width: 100%;
  padding: 15px;
  border: 1px solid #fff;
  background: #fff;
  color: #121212;
  font-size: 14px;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.section__rev #submit:hover {
  color: #fff;
  background: #1D5E49;
}

.rev__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.review__item {
  padding: 30px;
}

.review__txt {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
}

.review__name {
  font-weight: bold;
  font-size: 18px;
}

.comment-respond {
  margin-top: 60px;
}

.comment-notes {
  display: none;
}

.comment-form-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .comment-form-comment {
    width: 100%;
  }
}
.comment-form-comment label {
  display: block;
  margin-bottom: 10px;
}
.comment-form-comment textarea {
  border: 1px solid #ccc;
  outline: none;
  background: transparent;
  padding: 15px 20px;
}

.comment-form-author {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .comment-form-author {
    width: 100%;
  }
}
.comment-form-author label {
  display: block;
  margin-bottom: 10px;
}
.comment-form-author input {
  border: 1px solid #ccc;
  outline: none;
  background: transparent;
  padding: 15px 20px;
}

.comment-form-email {
  margin-top: 30px;
}
.comment-form-email label {
  display: block;
  margin-bottom: 10px;
}
.comment-form-email input {
  border: 1px solid #ccc;
  outline: none;
  background: transparent;
  padding: 15px 20px;
}

.form-submit {
  margin-top: 30px;
}