body * {
  font-family: Arial, "Nimbus Sans L", Helvetica, sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgb(84, 82, 82);
}

body {
  background: url(../img/elegant_handpainted_flowers_vector.jpg) repeat center top scroll;
  padding: 0;
  margin: 0;
}

a {
  font-weight: bold;
  color: rgb(255, 102, 68);
  text-decoration: none;
}

a:hover {
  border-bottom: 1px dotted rgb(255, 102, 68);
}

a.prod-link:hover {
  border: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

header {
  width: 100%;
}

.row {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.logo {
  text-align: center;
  padding: 50px 0 0 0;

}

.logo h1 {
  font-size: 65px;
  font-weight: bold;
  color: #000000;
}

.logo .menu li {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 19px;
  color: rgb(97, 97, 97);
  padding: 20px;
}

footer {
  text-align: center;
  color: #ffffff;
  width: 100%;
  background: rgb(51, 51, 51);
  border-top: 4px solid rgb(255, 102, 68);
  padding: 30px;
}

footer>span {
  color: #ffffff;
}

.content {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(34, 25, 25, 0.4);
  margin-bottom: 45px;
  padding-bottom: 45px;
}

.logo-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.logo-image img {
  transition: .5s;
  width: 100%;
}

.logo-image img:hover {
  transform: scale(1.3);
}

.logo-image::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid rgb(255, 255, 255);
  bottom: 0;
  left: 50%;
  margin-left: -10px;
  z-index: 1000;
}

h2 {
  color: rgb(97, 97, 97);
  font-weight: normal;
  font-size: 35px;
  text-align: center;
  margin: 25px;
}

h3 {
  text-align: center;
  color: rgb(84, 82, 82);
  font-size: 24px;
  line-height: 1.4;
  margin: 20px;
}

h4 {
  text-align: left;
  text-transform: uppercase;
  font-size: 22px;

}

.line {
  border-bottom: 1px dotted rgb(218, 218, 218);
  margin: 25px;
}

.line div {
  display: block;
  margin: 0 auto -10px auto;
  background: #ffffff;
  width: 130px;
  text-align: center;

}

.story {
  padding: 0 45px;
}

.comments {
  padding: 0 45px;
}

.content .story p {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.5;

}

.heroes {
  text-align: center;
  margin: 10px 0;
}

.heroes img {
  border: 10px solid rgb(241, 241, 241);
}

.btn-wrap {
  height: 70px;
}

.btn {
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  margin: 20px auto;
  background: rgb(255, 102, 68);
  max-width: 300px;
  text-align: center;
  padding: 10px;
  font-size: 20px;
  transition: .5s;
  border-radius: 5px;
}

.btn:hover {
  transform: scale(1.1);
}

.comment {
  border-bottom: 1px dotted rgb(218, 218, 218);
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 70px;
  padding-bottom: 15px;
}

.comment p {
  margin-bottom: 5px;
}

.avatar {
  width: 60px;
  float: left;
}

.name {
  color: rgb(251, 72, 52);
}

.comment-data {
  color: rgb(128, 127, 126);
  padding-left: 15px;
}

.text {
  margin-left: 80px;
}

.children {
  margin-left: 80px;
  position: relative;
}

.children::before {
  position: absolute;
  top: 3rem;
  left: 0;
  display: block;
  width: 0.85714rem;
  height: 0.85714rem;
  margin-left: -30px;
  content: "";
  border-bottom: 1px solid rgb(128, 127, 126);
  border-left: 1px solid rgb(128, 127, 126);
}

.comments img {
  width: 400px;
}

@media screen and (max-width: 800px) {
  .menu {
    display: none;
  }

  .logo {
    padding: 15px;
  }

  .logo h1 {
    font-size: 33px;
  }

  h2 {
    font-size: 22px;
    ;
  }

  h3 {
    font-size: 22px;
    line-height: 1.2;
    margin: 0;
  }

  .story {
    padding: 0 15px;
  }

  .row {
    margin: 0;
  }

  .content .story p {
    line-height: 1.2;
    font-size: 17px;
  }

  .comments {
    padding: 0 15px;
  }

  /* .comment{ */
  /* display: none; */
  /* } */
  /* .comments .mobile{ */
  /* display: block; */
  /* } */
  .mobile .text {
    margin: 0;
  }

  .mobile .text p {
    margin-top: 50px;
  }

  .avatar {
    margin-right: 10px;
  }

  .children {
    margin-left: 30px;
  }
}

@media screen and (max-width: 500px) {
  .logo h1 {
    font-size: 17px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .comment {
    display: none;
  }

  .comment.mobile {
    display: block;
  }
}