.section.s5 {
  padding: 70px 0 0 0;
}

.s5 h3 {
  font-size: 40px;
  line-height: 50px;
}
.s5 .dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.s5 .active,
.s5 .dot:hover {
  background-color: #002d18;
}
.s5 .comments {
  min-height: 600px;
}
.s5 .comment {
  width: fit-content;
  text-align: left;
  background: #9caba3;
  position: relative;
  border: solid 1px #9caba3;
  border-radius: 20px;
  margin: 10px;
  padding: 20px 20px;
}
.s5 .comment .arrow {
  width: 0px;
  height: 0px;
  border: 25px solid transparent;
  border-style: solid;
  border-left: 0;
  border-bottom: 0;
  margin-top: 14px;
  margin-left: 10px;
  border-color: transparent #9caba3 transparent transparent;
  position: absolute;
  top: 25%;
  left: -25px;
}
@media (max-width: 768px) {
  .s5 h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(50%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideLeftFade {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideRightFade {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}
