html {
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  padding-right: 8px;
  padding-left: 8px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1300px;
  }
}
.main_cont {
  max-width: 66%;
  padding-top: 30px;
  margin: 0 auto;
}
.main_cont .headline {
  color: #Ff0000;
  font-size: 32px;
  line-height: 1.33;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
}
.main_cont .headline_2 {
  font-size: 24px;
  line-height: 1.45;
  margin-bottom: 24px;
}
.main_cont .body_text {
  font-size: 16px;
  line-height: 1.25;
}
.main_cont .col-g {
  color: #26B654;
}
.main_cont .col-r {
  color: #910707;
}
.main_cont .body_text-curved {
  font-style: italic;
}
.main_cont .mb-1 {
  margin-bottom: 10px !important;
}
.main_cont .mb-2 {
  margin-bottom: 20px !important;
}
.main_cont .mb-4 {
  margin-bottom: 40px !important;
}
.main_cont .mb-6 {
  margin-bottom: 60px !important;
}
.main_cont .goto-form {
  text-decoration: none;
  color: #ff0000;
  cursor: pointer;
}
.main_cont .img-wrap {
  width: 70%;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 32px;
}
.main_cont .img-wrap.img-wrap-low {
  width: 400px;
}

.main_cont .img-wrap.img-wrap-small {
  width: 200px;
}

.main_cont .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_cont .to-form {
  text-decoration: none;
  color: #fff;
}
@media (max-width: 1024px) {
  .main_cont {
    max-width: 75%;
  }
}
@media (max-width: 768px) {
  .main_cont {
    max-width: 90%;
  }
  .main_cont .img-wrap {
    width: 90%;
  }
  .main_cont .img-wrap.img-wrap-low {
    width: 250px;
  }
  
}
.comment-cont .comments-title {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  margin-bottom: 20px;
}
.comment-cont .comments-title .total-comments {
  font-weight: 700;
}
.comment-cont .comments-title .title {
  font-weight: 700;
  color: #3b5a97;
}
.comment-cont .comment {
  border-bottom: 1px solid #bababa;
  padding-bottom: 30px;
}
.comment-cont .comment:not(:last-child) {
  margin-bottom: 30px;
}
.comment-cont .comment-inner {
  display: flex;
}
.comment-cont .comment-inner .avatar {
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}
.comment-cont .comment-inner .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comment-cont .comment-inner .commentName {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #3b5a97;
}
.comment-cont .comment-inner .commentText {
  font-size: 16px;
  margin-bottom: 8px;
}
.comment-cont .comment-inner .time-ago {
  font-style: italic;
}
@media (max-width: 768px) {
  .comment-cont .comment-inner .avatar {
    min-width: 48px;
    width: 48px;
    height: 48px;
  }
}
.form-cont {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  border: 2px dashed #000;
  border-radius: 20px;
}
.form-cont .img-wrap {
  max-width: 250px;
}
.form-cont .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form-cont .reviews {
  display: flex;
  width: fit-content;
  gap: 8px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.form-cont .reviews .star {
  display: inline-flex;
  width: 16px;
  height: 16px;
  background: #FFBE0B;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.form-cont .btn-form {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  padding: 8px 20px;
  background: #FED1BD;
  font-size: 24px;
  font-weight: 700;
  border-radius: 6px;
  scale: 0.9;
  animation: pulse 1s infinite;
}
@media (max-width: 768px) {
  .form-cont {
    max-width: 100%;
    padding: 4px;
  }
  .form-cont .img-wrap {
    max-width: 200px;
  }
  .form-cont .reviews {
    justify-content: center;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .form-cont .review .body_text {
    display: flex;
    flex-direction: column;
  }
  .form-cont .btn-form {
    width: 100%;
    font-size: 18px;
    padding: 8px 16px;
  }
}


@keyframes pulse {
  0% {
    scale: 0.9;
  }

  66% {
    scale: 1.05;
  }

}