* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:aftera {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  vertical-align: top;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --primary-text-color: #474747;
  --text-color: #777777;
  --color-form: #f4f4f4;
  --color-error: #891900;
  --page-theme-color: #ffba9d;
  --color-like: #01620b;
  --color-dislike: #a30000;
  --color-tab: #c4c4c4;
  --color-line: #dfdfdf;
}

@media (max-width: 1200px) {
  header,
  main,
  footer {
    padding: 0 30px 0 30px;
  }
}

@media (max-width: 1100px) {
  .header__secttion-navigation {
    display: none;
  }
  .header__secttion .nav-btn {
    display: block;
  }
  .header__secttion .mobile-nav-active {
    display: block;
  }
}

@media (max-width: 860px) {
  h1 {
    line-height: 36px;
  }
}

@media (max-width: 820px) {
  body .form-container {
    padding: 0 30px 0 30px;
    max-width: 600px;
  }
  form .form__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  form .form__group-item {
    padding-bottom: 30px;
  }
  form .form__textarea {
    max-width: 600px;
  }
  .comment__card-body .body-answer {
    width: 500px;
  }
  .comment .comment__card {
    display: none;
  }
}

@media (max-width: 810px) {
  form .form__textarea {
    max-width: 570px;
  }
}

@media (max-width: 670px) {
  form .form__textarea {
    max-width: 540px;
  }
}

* {
  font-family: "Roboto Mono", monospace;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.form-container,
.first-comments {
  width: 100%;
  max-width: 737px;
  margin: 0 auto;
}

h2 {
  font-size: 19px;
  font-weight: 400;
  color: var(--primary-text-color);
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 96px 0px;
}

.header__secttion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__secttion-navigation a {
  padding: 0 21px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  -webkit-transition: all 0.4s ease 0.2s;
  transition: all 0.4s ease 0.2s;
}

.header__secttion-navigation a:hover {
  color: var(--page-theme-color);
  border-bottom: 2px solid var(--page-theme-color);
}

.header__secttion .form-search {
  width: 256px;
  position: relative;
  padding-left: 99px;
}

.header__secttion .form-search__field {
  width: 100%;
  height: 40px;
  border-radius: 3px;
  background: var(--color-form);
  padding-left: 14px;
  font-size: 12px;
  color: var(--primary-text-color);
  -webkit-transition: all 0.4s ease 0.2s;
  transition: all 0.4s ease 0.2s;
}

.header__secttion .form-search__field:focus {
  -webkit-box-shadow: 0 0 5px var(--page-theme-color);
          box-shadow: 0 0 5px var(--page-theme-color);
}

.header__secttion .form-search__field:hover {
  -webkit-box-shadow: 0 0 5px var(--page-theme-color);
          box-shadow: 0 0 5px var(--page-theme-color);
}

.header__secttion .form-search__btn {
  position: absolute;
  top: 0;
  right: 0px;
  width: 40px;
  height: 40px;
  background: var(--page-theme-color);
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease 0.2s;
  transition: all 0.4s ease 0.2s;
}

.header__secttion .form-search__btn:focus {
  -webkit-box-shadow: 0 0 5px var(--page-theme-color);
          box-shadow: 0 0 5px var(--page-theme-color);
}

.header__secttion .form-search__btn:hover {
  -webkit-box-shadow: 0 0 5px var(--page-theme-color);
          box-shadow: 0 0 5px var(--page-theme-color);
}

.nav-btn {
  position: relative;
  z-index: 9;
  display: none;
  height: 25px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
  padding-left: 90px;
}

.nav-btn-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 0.5px;
  background-color: var(--primary-text-color);
  border: none;
}

.nav-btn-icon::before {
  position: absolute;
  left: 0;
  top: -10px;
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background-color: var(--primary-text-color);
}

.nav-btn-icon::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background-color: var(--primary-text-color);
}

.nav-btn-close .nav-btn-icon {
  background-color: transparent;
  position: fixed;
  right: 5px;
}

.nav-btn-close .nav-btn-icon::before {
  width: 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
}

.nav-btn-close .nav-btn-icon::after {
  width: 30px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
}

.mobile-nav {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 8;
  width: 320px;
  height: 100%;
  -webkit-box-shadow: 0px 1px 10px 7px rgba(71, 71, 71, 0.2);
          box-shadow: 0px 1px 10px 7px rgba(71, 71, 71, 0.2);
  background-color: var(--color-white);
  opacity: 0.95;
  padding: 150px 70px 30px 30px;
}

.mobile-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mobile-nav ul li {
  margin-bottom: 50px;
  list-style: none;
}

.mobile-nav ul li a {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-color);
  -webkit-transition: all 0.4s ease 0.2s;
  transition: all 0.4s ease 0.2s;
}

.mobile-nav ul li a:hover {
  color: var(--page-theme-color);
  border-bottom: 2px solid var(--page-theme-color);
}

.main .text-small {
  font-size: 12px;
  color: var(--text-color);
}

.main .text-medium {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: var(--primary-text-color);
}

.main h1 {
  font-size: 24px;
  font-weight: 400;
  color: var(--primary-text-color);
}

.main .swiper-slide img {
  max-width: 100%;
  border-radius: 7px;
}

.main__title h1 {
  padding-top: 30px;
  padding-bottom: 68px;
}

.main__title-text_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 30px;
}

.main__title-text_row .text-small {
  width: 170px;
}

.main__title-text_row .text-small:last-child {
  border-left: 1px solid var(--color-line);
  padding-left: 12.21px;
}

.main__swiper {
  padding-top: 20px;
  padding-bottom: 48px;
}

.main__content h2 {
  padding-top: 34px;
  padding-bottom: 39px;
}

.main__content-wrapper {
  margin-left: 40px;
  padding-top: 67px;
}

.main__content-wrapper .vertical_line {
  max-width: 983px;
  border-left: 1px solid var(--color-line);
  padding-left: 16px;
}

.main__content-wrapper .vertical_line p:first-child {
  padding-top: 3px;
  padding-bottom: 32px;
}

.main__content-wrapper h2 {
  padding-top: 83px;
  padding-bottom: 50px;
}

.main__content-wrapper ul {
  max-width: 888px;
}

.main__content-wrapper ul li:first-child {
  padding-bottom: 30px;
}

.main__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 84px;
  padding-bottom: 7px;
}

.main__meta .btn-tags {
  height: 30px;
  padding: 0 16px 0 16px;
  background: var(--color-form);
  border-radius: 3px;
  font-size: 12px;
  color: var(--primary-text-color);
}

.main__meta-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main__meta-social p {
  padding-right: 12px;
  font-size: 12px;
  color: var(--primary-text-color);
}

.main__meta-social .social__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 12px;
  font-size: 18px;
  color: var(--primary-text-color);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.main__meta-social .social__item:hover {
  color: var(--page-theme-color);
}

.main .horizontal-line {
  background: var(--color-line);
  height: 1px;
  border: none;
}

.form {
  padding-top: 45px;
}

.form__title {
  padding-bottom: 30px;
}

.form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 22px;
}

.form__group-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form__group-label {
  padding-bottom: 15px;
  font-size: 16px;
  color: var(--primary-text-color);
}

.form__group-input {
  width: 216px;
  height: 40px;
  padding-left: 14px;
  border-radius: 3px;
  font-size: 12px;
  background: var(--color-form);
  color: var(--primary-text-color);
  -webkit-transition: all 0.4s ease 0.2s;
  transition: all 0.4s ease 0.2s;
}

.form__group-input:focus {
  -webkit-box-shadow: 0 0 5px var(--page-theme-color);
          box-shadow: 0 0 5px var(--page-theme-color);
}

.form__group-input:hover {
  -webkit-box-shadow: 0 0 5px var(--page-theme-color);
          box-shadow: 0 0 5px var(--page-theme-color);
}

.form__save {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__save-switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 19px;
}

.form__save-switch input {
  display: none;
}

.form__save-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  border: 1px solid var(--primary-text-color);
  border-radius: 34px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.form__save-switch .slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 1px;
  bottom: 1px;
  border-radius: 50%;
  background: var(--color-tab);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.form__save-switch input:checked + .slider:before {
  -webkit-transform: translateX(11px);
  transform: translateX(11px);
  background: var(--page-theme-color);
}

.form__save-text {
  font-size: 12px;
  color: var(--primary-text-color);
  padding-left: 6px;
}

.form__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  padding-bottom: 17px;
}

.form__message-text {
  padding-right: 5px;
  font-size: 16px;
  color: var(--primary-text-color);
}

.form__message img {
  padding: 0 7px;
}

.form__textarea {
  width: 709px;
  height: 69px;
  resize: vertical;
  border-radius: 3px;
  padding: 14px;
  font-size: 12px;
  background-color: var(--color-form);
  color: var(--primary-text-color);
  -webkit-transition: all 0.4s ease 0.4s;
  transition: all 0.4s ease 0.4s;
}

.form__textarea:focus {
  -webkit-box-shadow: 0 0 5px var(--page-theme-color);
          box-shadow: 0 0 5px var(--page-theme-color);
}

.form__textarea:hover {
  -webkit-box-shadow: 0 0 5px var(--page-theme-color);
          box-shadow: 0 0 5px var(--page-theme-color);
}

.form__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 18px;
}

.form__btn .btn-size {
  width: 88px;
  height: 44px;
  border-radius: 3px;
  font-size: 16px;
}

.form__btn-cancel {
  background: var(--color-form);
  color: var(--primary-text-color);
}

.form__btn-post {
  background: var(--primary-text-color);
  color: var(--color-white);
}

.comment__title {
  padding-top: 43px;
  padding-bottom: 30px;
}

.comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.comment__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  height: 174px;
}

.comment__card-img {
  padding-bottom: 60px;
}

.comment__card-body {
  width: 600px;
}

.comment__card-body .body-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 15px;
}

.comment__card-body .body-title__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.comment__card-body .body-title__editor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.comment__card-body .body-title__editor img:first-child {
  padding-right: 14px;
}

.comment__card-body .body-answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.comment__card-body .body-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px;
}

.comment__card-body .body-footer__reply {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.comment__card-body .body-footer__reply .reply-text {
  padding-left: 8px;
  font-size: 16px;
  color: var(--text-color);
}

.comment__card-body .body-footer__reaction {
  cursor: pointer;
}

.comment__card-heart {
  cursor: pointer;
}

.comment__horizontal-line {
  background: var(--color-line);
  height: 1px;
  border: none;
}

.bg {
  background-color: var(--color-form);
}

.footer {
  height: 94px;
  position: relative;
  margin-top: 36px;
}

.footer__scrol-up {
  position: absolute;
  top: -36px;
  right: 50%;
  display: block;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  background-color: var(--color-white);
  margin: 0 auto;
  text-align: center;
}

.footer__scrol-up .arrow {
  position: absolute;
  top: 36px;
  right: 28px;
  color: var(--primary-text-color);
  -webkit-transition: all 0.2s ease 0.2s;
  transition: all 0.2s ease 0.2s;
}

.footer__scrol-up .arrow:hover {
  color: var(--page-theme-color);
  font-size: 30px;
  right: 22px;
  top: 20px;
}

.footer__alignment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 37px 0;
}

.footer__alignment-copyright {
  font-size: 12px;
  font-weight: 400;
  color: var(--primary-text-color);
}

.footer__alignment-copyright span {
  font-size: 15px;
}

.footer__alignment-social .social__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 12px;
  font-size: 18px;
  color: var(--primary-text-color);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.footer__alignment-social .social__item:hover {
  color: var(--page-theme-color);
}
/*# sourceMappingURL=main.css.map */