.main,
body,
html {
  width: 100%;
  height: 100%;
}

h1,
h6 {
  text-transform: uppercase;
}

.btn--round,
h1,
h6,
p {
  text-align: center;
}

body {
  overflow-x: hidden;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #333;
  min-width: 320px;
  background: 50%/cover #fff;
  z-index: 0;
}

h1 {
  font-size: 3.5rem;
}

h6 {
  font-size: 1.6rem;
}

* {
  padding: 0;
  box-sizing: border-box;
  margin: 0;
}

html {
  font-size: 62.5%;
}

.main {
  position: relative;
  z-index: 1;
}

.step__body {
  margin-bottom: 20px;
}

.step,
.survey-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.step {
  color: #fff;
  background-color: #fff;
  padding: 24px 24px 32px;
  border-radius: 16px;
}

.step.step__final {
  background-color: transparent;
  padding: 0;
}
.step.step__final .btn {
  height: 56px;
}

.content {
  background-color: #f8d054;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 24px 16px 16px;
  max-width: 1232px;
  margin: 0 auto;
}

.content__wrapper {
  max-width: 764px;
  margin: 0 auto;
}

.logo {
  font-size: 12px;
  padding: 4px 8px;
  background-color: rgba(255, 255, 255, 0.5019607843);
  color: #000;
  border-radius: 4px;
  max-width: -moz-max-content;
  max-width: max-content;
}

.header__descriptions {
  margin-top: 24px;
}

.header__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
}

.header__offer {
  font-size: 14px;
  margin-top: 8px;
  font-weight: 400;
}

.survey-container {
  margin-top: 32px;
}

p {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 5px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  height: 100%;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.btn__continue {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
  background-color: black;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  height: 100%;
  text-decoration: none;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
}

.btn__continue:nth-child(odd):last-child {
  grid-column: span 2;
}

.step__answers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: stretch;
}

.btn:nth-child(odd):last-child {
  grid-column: span 2;
}

.progress {
  position: relative;
  width: 100%;
  height: 20px;
  background-color: #f2f4f7;
  border-radius: 5px;
  overflow: hidden;
  margin: 20px 0;
}

.bar {
  width: 0;
  height: 100%;
  background-color: #030235;
  transition: width 0.3s linear;
}

.header__text.current {
  display: block;
}

.header__text {
  display: none;
}

.comments {
  margin-top: 24px;
  padding: 0 16px;
}

.comments__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.comments-count {
  font-weight: bold;
}

.count {
  padding: 1px 4px;
  background-color: #f2f4f7;
  border-radius: 8px;
}

.comments__sort {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.sort__arrows {
  font-size: 12px;
  line-height: 1;
  margin-right: 5px;
}

.dropdown__arrow {
  font-size: 12px;
}

.comment__card {
  width: 100%;
  background-color: #f2f4f7;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 16px;
  margin-bottom: 16px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  margin-top: 12px;
}

.comment__header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  margin-right: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.username {
  font-weight: bold;
  color: #333;
}

.time__ago {
  color: #999;
  font-size: 12px;
}

.comment__body {
  margin-left: 44px;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.5;
}

.comment__footer {
  display: flex;
  font-size: 14px;
  margin-left: 44px;
}

.like__count {
  cursor: pointer;
  color: #929292;
}

.reply {
  cursor: pointer;
  color: #929292;
}

.separator {
  margin: 0 8px;
  color: #ccc;
}

.comment__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.comment__form {
  width: 100%;
  background-color: #f5f7f9;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.footer__content__wrapper {
  max-width: 764px;
  margin: 0 auto;
}

.form__info {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.form__avatar {
  width: 36px;
  height: 36px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
}

.form__input {
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 8px 12px;
  background-color: #fff;
  font-size: 14px;
  color: #333;
}

.textarea__container {
  position: relative;
}

.comment-text {
  width: 100%;
  height: 120px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 14px;
  resize: none;
}

.textarea__footer {
  position: absolute;
  bottom: 15px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-publish {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #999;
}

.social-publish input {
  margin-right: 8px;
}

.submit__btn {
  background-color: #000033;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 14px;
  opacity: 0.8;
}

.submit__btn:hover {
  opacity: 1;
}

.icon {
  display: flex;
}

.footer {
  margin-top: 24px;
}

.disclaimer {
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: #929292;
  padding: 0 16px;
}

.copyright {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #929292;
}

.footer__links {
  border-top: 1px solid #e0e0e0;
  margin-top: 24px;
  padding: 0 16px;
}

.footer__link {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  margin-right: 16px;
  cursor: pointer;
}

.copyright {
  margin-top: 16px;
}

.footer__links__list {
  padding: 8px 0 16px;
}

@media (min-width: 400px) {
  .btn {
    font-size: 16px;
    padding: 10px 10px;
  }
}
@media (min-width: 768px) {
  .btn {
    font-size: 18px;
    padding: 10px 15px;
  }
  .footer__links {
    display: flex;
    justify-content: space-between;
  }
  .copyright {
    margin-top: 0;
    padding: 16px 0;
  }
  .footer__links__list {
    padding: 16px 0;
  }
  .footer__content__wrapper {
    max-width: 1232px;
    margin: auto;
  }
}
.progress__body {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}