@font-face {
  font-family: "OpenSans Bold";
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2"),
    url("../fonts/OpenSans-Bold.woff") format("woff"),
    url("../fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2"),
    url("../fonts/OpenSans-Regular.woff") format("woff"),
    url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

html {
  font-size: 16px;
}

body {
  padding: 0;
  margin: 0;
  font-family: "OpenSans", sans-serif;
}

.visually_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

@media (min-width: 1200px) {
  .header__image {
    background-image: url("../images/banner-bg.jpg");
  }
}

@media (min-width: 641px) and (max-width: 1199px) {
  .header__image {
    background-image: url("../images/banner-bg-tablet.jpg");
    background-position: top;
  }
}

@media (max-width: 640px) {
  .header__image {
    background-image: url("../images/banner-mobile.jpg");
  }
}

.noemi_logo {
  width: auto;
}

.header__image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #1f3029;
  position: relative;
  z-index: 0;
  color: #fff;
  text-transform: uppercase;
}

.header__image:after {
  content: "";
  position: absolute;
  background-color: #000000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.6;
  z-index: -1;
}

.menu__icon {
  position: absolute;
  background-color: transparent;
  border: none;
  background-image: url("../svg/burger-menu.svg");
  background-size: cover;
  width: 2.5em;
  height: 3em;
  top: 1em;
  right: 1em;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.main__list {
  display: none;
}

.header__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.noemi_svg {
  width: 100%;
}

.main__heading {
  font-size: 1.78em;
  text-align: center;
}


@media (min-width: 1200px) {
  .menu__icon {
    display: none;
  }

  .main__list {
    display: flex;
    margin: 0;
    padding: 0;
  }

  .menu__list {
    list-style-type: none;
  }

  .menu__link {
    text-decoration: none;
    color: #fff;
  }

  .noemi_svg {
    width: 50%;
    margin-top: 5%;
  }

  .main__heading {
    margin-bottom: 5%;
  }
}

@media (max-width: 640px) {
  .noemi_svg {
    margin-top: 65%;
  }

  .main__heading {
    margin: 5%;
    padding-bottom: 60%;

  }

  .posts__list,
  .right__info {
    box-sizing: border-box;
    padding: 0 1em;
  }
}

.section_trends {
  display: block;
}

.trends_header {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "OpenSans Bold", sans-serif;
  text-transform: uppercase;
  font-size: 1em;
  position: relative;
  margin-top: 2em;
  margin-bottom: 2em;
}

.trends_header:after {
  content: "";
  position: absolute;
  width: 64px;
  bottom: -0.5em;
  border-bottom: 2px solid #c5a34e;
}

.trends_tags {
  display: flex;
  flex-direction: row;
  padding: 0;
  margin-bottom: 0;
  margin-top: 1em;
}

.trends__tag {
  list-style-type: none;
  margin-right: 1em;
}

.tag_link {
  text-decoration: none;
  color: #c5a34e;
}

.trends_item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-color: #1f3029;
  position: relative;
  z-index: 0;
  color: #ffffff;
  text-transform: uppercase;
  box-sizing: border-box;
  padding-top: 25%;
  padding-bottom: 5%;
  margin-bottom: 0.1em;
}

.trends_item:after {
  content: "";
  position: absolute;
  background-color: #000000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.6;
  z-index: -1;
}

.trend_garden {
  background-image: url("../images/trend1.jpg");
}

.trend_cheese {
  background-image: url("../images/trend2.jpg");
}

.trend_mountain {
  background-image: url("../images/trend3.jpg");
}

.trend_lemon {
  background-image: url("../images/trend4.jpg");
}

.trends_frame {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  width: 100%;
  padding: 1em;
  margin: 0;
  border: 2px solid #c5a34e89;
}

.trends_tags {
  padding-left: 1em;
}

.trends_text {
  font-size: 1em;
  font-weight: normal;
  margin: 0;
  margin-top: 0.5em;
  padding: 0.5em 1em 1em;
}

.t_text {
  color: #fff;
}

.popup__close {
  display: flex;
  width: 94%;
  justify-content: right;
  color: #ffffff;
  font-weight: bold;
  font-size: 2.2em;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  z-index: 3;
}

.popup__close_btn:checked~.popup__back {
  display: none;
}

.popup__close_btn:checked~.popup__close {
  display: none;
}

.popup {
  width: 85%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  z-index: 2;
  align-self: center;
  box-sizing: border-box;
  padding: 1em 2.5em;
}

.popup__close_btn {
  display: none;
}

.popup__back {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #0000008d;
  z-index: 1;
  justify-content: center;
}

.popup__container {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;

}

.feedback_chose {
  font-family: "OpenSans", sans-serif;
  box-sizing: border-box;
  padding: 1em;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../svg/triangles-forming-arrow-up-and-down.svg);
  background-size: 1.3em;
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-color: #f4f4f4;
  border: none;
  color: #6f6f6f;
  margin-bottom: 1.5em;
}

#mailing__yes,
#mailing__no {
  display: none;
}

.radiobuttons {
  display: flex;
  margin-top: 0.5em;
  margin-bottom: 2em;
  gap: 2.5em;
}

.rb_chose {
  margin-right: 2em;
  margin-left: 2.2em;
}

.close {
  width: 1em;
}

.yes,
.no {
  width: 2em;
  height: 2em;
  margin-right: 4px;
  cursor: pointer;
  background-image: url(../svg/radio-button-unchecked.svg);
  background-size: 2em;
}

.mailing__yes:checked+.yes {
  background-image: url(../svg/radio-button-checked.svg);
}

.mailing__no:checked+.no {
  background-image: url(../svg/radio-button-checked.svg);
}

.popup__feedback {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "OpenSans Bold", sans-serif;
  text-transform: uppercase;
  font-size: 1em;
  position: relative;
  margin-top: 1em;
  margin-bottom: 2em;
}

.popup__feedback::after {
  content: "";
  position: absolute;
  width: 64px;
  bottom: -0.5em;
  border-bottom: 2px solid #c5a34e;
}

.popup__text {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.textarea {
  display: flex;
  padding-bottom: 20%;
  background-color: #f4f4f4;
  font-family: "OpenSans", sans-serif;
  border: none;
  resize: none;
  margin-top: 0.5em;
  padding-left: 1em;
  padding-top: 1em;
  margin-bottom: 2em;
}

.feedback__submit {
  padding: 1em;
  width: 100%;
  background-color: #b59f5b;
  cursor: pointer;
  font-family: "OpenSans Bold", sans-serif;
  font-size: 1em;
  color: #fff;
  text-transform: uppercase;
  border: none;
  align-items: center;
  margin-bottom: 2em;
}

.main__sections {
  width: 100%;
}

.bigpost__item {
  position: relative;
  margin-bottom: 4em;
}

.bigpost__item::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -1.5em;
  border-bottom: 2px solid #d3d3d3;
}

.bigpost__tags {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 2em;
}

.post__info {
  display: flex;
}

.post__tag {
  list-style-type: none;
  text-transform: uppercase;
  font-family: "OpenSans Bold", sans-serif;
  font-size: 1em;
  margin-top: 0.5em;
}

.post__head {
  text-transform: uppercase;
  font-family: "OpenSans Bold", sans-serif;
  font-size: 1.2em;
}

.post__title {
  text-decoration: none;
  color: #000;
}

.posts__list {
  margin-top: 10%;
}

.bigpost__image {
  width: 100%;
}

.post__data,
.post__author {
  font-size: 0.9em;
}

.post__data {
  color: #6f6f6f;
  margin: 0;
  margin-right: 1em;
}

.posts__title {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "OpenSans Bold", sans-serif;
  text-transform: uppercase;
  font-size: 1em;
  position: relative;
  margin-top: 2em;
  margin-bottom: 2em;
}

.posts__title:after {
  content: "";
  position: absolute;
  width: 64px;
  bottom: -0.5em;
  border-bottom: 2px solid #c5a34e;
}

.post__author {
  font-weight: bold;
  margin: 0;
}

.newposts__list {
  margin: 0;
  padding: 0;
}

.newpost__image {
  height: 100%;
  margin: 0.8em 1em 0.8em 0;
}

.newposts__item {
  display: flex;
  flex-direction: row;
  list-style-type: none;

}

.newpost {
  display: flex;
  flex-direction: column;
}

.newpost__data {
  color: #6f6f6f;
  margin-bottom: 0.5em;
  font-size: 0.8em;
}

.newpost__head {
  font-family: "OpenSans Bold", sans-serif;
  text-transform: uppercase;
  margin: 0;
  font-size: 0.9em;
}

.posts__searching {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 2em 0;
}

.search_field {
  box-sizing: border-box;
  padding: 1.3em;
  width: 95%;
  border: 0px solid #f5f7f6;
  background-color: #f5f7f6;
}

.search_loupe {
  padding: 1.9em;
  background-image: url(../svg/search.svg);
  background-size: 40%;
  background-repeat: no-repeat;
  background-color: #b59f5b;
  background-position: center center;
  border: 0px solid #f5f7f6;
  cursor: pointer;
}

.mailing_title {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "OpenSans Bold", sans-serif;
  text-transform: uppercase;
  font-size: 1em;
  position: relative;
  margin-top: 2em;
  margin-bottom: 2em;
}

.info__mailing {
  padding: 0;
  margin: 1em 0;
}

.mailing_title::after {
  content: "";
  position: absolute;
  width: 64px;
  bottom: -0.5em;
  border-bottom: 2px solid #c5a34e;
}

.mailing_field {
  box-sizing: border-box;
  padding: 1.3em;
  margin: 0;
  width: 100%;
  border: 0px solid #f5f7f6;
  background-color: #f5f7f6;
}

.mailing_button {
  padding: 1.3em;
  width: 100%;
  background-color: #b59f5b;
  cursor: pointer;
  font-family: "OpenSans Bold", sans-serif;
  color: #fff;
  text-transform: uppercase;
  border: none;
  align-items: center;
  margin-top: 1em;
  cursor: pointer;
}

.tags_title {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "OpenSans Bold", sans-serif;
  text-transform: uppercase;
  font-size: 1em;
  position: relative;
  margin-top: 2em;
}

.tags_title:after {
  content: "";
  position: absolute;
  width: 62px;
  bottom: -0.5em;
  border-bottom: 2px solid #c5a34e;
}


.info__tags {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tags_bigblock {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  margin: 1em 0;
}

.tag {
  font-family: "OpenSans Bold", sans-serif;
  ;
  font-size: 0.7em;
  text-transform: uppercase;
  justify-content: center;
  text-decoration: none;
  color: #000;
}

.sup {
  vertical-align: super;
}

.tag__block {
  box-sizing: border-box;
  width: auto;
  height: auto;
  padding: 0.2em 0.7em;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  border: 3px solid #efefef;
  list-style-type: none;
  cursor: pointer;
}

.info__topics {
  display: flex;
  flex-direction: column;
}

.topics_title {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "OpenSans Bold", sans-serif;
  text-transform: uppercase;
  font-size: 1em;
  position: relative;
  margin-top: 1em;
}


.topics_title::after {
  content: "";
  position: absolute;
  width: 62px;
  bottom: -0.5em;
  border-bottom: 2px solid #c5a34e;
}

.topics_item {
  display: flex;
  font-family: "OpenSans Bold", sans-serif;
  font-size: 0.8em;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 0.8em;
  padding: 0.8em;
}

.topics_list {
  padding: 0;
  margin: 1em 0;
}

.topic,
.topic_count {
  text-decoration: none;
}

.topic {
  color: #000;
}

.topic_count {
  color: #b59f5b;
  margin-left: 0.25em;
}

.ourproducts {
  margin: 1em;
}

.product__header {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "OpenSans Bold", sans-serif;
  text-transform: uppercase;
  font-size: 1em;
  position: relative;
  margin-top: 2em;
  margin-bottom: 2em;
}

.product__header::after {
  content: "";
  position: absolute;
  width: 64px;
  bottom: -0.5em;
  border-bottom: 2px solid #c5a34e;
}

.product__photo {
  margin: 1em;
}

.product__name {
  font-size: 1em;
  font-family: "OpenSans Bold", sans-serif;
  text-transform: uppercase;
  margin: 0.5em 1em;
}

.product__text {
  font-weight: bold;
  font-size: 0.9em;
  margin: 0 1em;
}

.product__photo {
  width: 80%;
}


.product__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0;
}

.text__link {
  color: #c5a34e;
}

.no-line {
  text-decoration: none;
}

.price_past {
  margin: 0;
  padding: 0;
  text-decoration: line-through;
  font-size: 1em;
  font-weight: bold;
}

.price {
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 1.5em;
}

.product__saling {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1em 1em 4em 1em;
}

.product__shop {
  padding: 1.3em;
  width: 50%;
  background-color: #b59f5b;
  cursor: pointer;
  font-family: "OpenSans Bold", sans-serif;
  color: #fff;
  text-transform: uppercase;
  border: none;
  align-items: center;
  margin-top: 1em;
}

.product__info {
  position: relative;
  width: 90%;
}

.product__info::after {
  content: "";
  width: 100%;
  height: 95%;
  top: -2em;
  border: 3px solid #b59f5b8a;
  position: absolute;
  z-index: -1;
}

.page__footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.socials_info {
  display: flex;
  box-sizing: border-box;
  padding: 1em;
  background-color: #eeeeee;
  justify-content: center;
  align-content: center;
  gap: 10%;
}

.social_logo {
  margin: 0;
  padding: 0;
  width: 2em;
}

.social_link {
  padding: 0;
}

.copyright_info {
  font-size: 0.9em;
  text-align: center;
  color: #6f6f6f;
  margin: 3em;
}

@media (min-width: 640px) and (max-width: 1199px),
(max-width: 640px) and (orientation: landscape) {
  .noemi_svg {
    width: 50%;
    margin-top: 1.5em;
  }

  .menu__icon {
    top: 2em;
    width: 2em;
    height: 2.5em;
  }

  .header__content {
    display: flex;
    align-items: start;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .heading__text {
    margin: 10% 10% 0 10%;
  }

  .main__heading {
    text-align: center;
    font-size: 2em;
    padding-bottom: 15%;
  }

  .section_trends {
    display: flex;
    flex-direction: column;
  }

  .trends__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5%;
  }

  .trends_item {
    display: flex;
    align-items: end;
    width: 49.75%;
    box-sizing: border-box;
    margin-bottom: 0.3em;
    padding: 4em 1.5em 1em 1.5em;
  }

  .trends_frame {
    padding: 0.5em;
  }

  .main__sections {
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    padding: 0 15px;
  }

  .posts__list {
    width: 55%;
    margin-top: 2em;
    padding: 0 1em 0 0.5em;
  }

  .posts__title {
    margin-top: 0;
    margin-bottom: 1em;
  }

  .newpost__data {
    margin-bottom: 0;
  }

  .right__info {
    width: 45%;
    margin-top: 2em;
    padding: 0 0.5em;
  }

  .newpost__head {
    font-size: 13px;
  }

  .post__head {
    font-size: 1em;
  }

  .post__description {
    font-size: 13px;
  }

  .product__photo {
    width: 84%;
    height: 42%;
  }

  .products__list {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding-left: 3%;
    padding-right: 3%;
  }

  .product__info {
    height: 100%;
    width: 100%;
  }

  .product__item {
    width: 48%;
  }

  .product__item:nth-child(2n) {
    margin-left: 4%;
  }

  .socials_info {
    gap: 7%;
  }

  .social_logo {
    width: 2em;
  }

  .product__header {
    margin-top: 0;
  }

  .popup__close {
    width: 81%;
  }

  .popup {
    width: 60%;
  }

  .textarea {
    padding-bottom: 10%;
  }

  .product__text {
    font-size: 13px;
  }

  .product__shop {
    font-size: 13px;
    padding: 1.2em 1.5em;
  }

  .product__price {
    font-size: 12px;
  }
}


@media (min-width: 1200px) {
  .noemi_svg {
    width: 50%;
  }

  .header__image {
    background-position: top;
  }

  .menu__icon {
    display: none;
  }

  .header__content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 0;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .menu__list {
    display: flex;
    width: 100%;
    flex-direction: row;
    padding: 0;
    margin: 0;
    gap: 2em;
  }

  .menu__item {
    font-size: 0.8em;
  }

  .heading__text {
    margin-top: 3%;
  }

  .main__heading {
    text-align: center;
    font-size: 2.4em;
    font-family: "OpenSans Bold", sans-serif;
    text-wrap: wrap;
    margin-left: 25%;
    margin-right: 25%;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 7%;
  }

  .section_trends {
    display: flex;
    flex-direction: column;
  }

  .trends__list {
    display: flex;
    gap: 0.25%;
  }

  .trends_tags {
    font-family: "OpenSans Bold", sans-serif;
    font-size: 0.8em;
  }

  .trends_text {
    font-family: "OpenSans Bold", sans-serif;
    font-size: 0.8em;
    padding-bottom: 0.5em;
  }

  .trends_item {
    display: flex;
    align-items: end;
    width: 25%;
    box-sizing: border-box;
    padding-top: 7%;
    padding-bottom: 1em;
    margin-bottom: 0.1em;
  }

  .trends_frame {
    display: flex;
    width: 100%;
    padding-left: 0.5em;
    padding-right: 0.5em;
    margin: 0 1em;
  }

  .bigpost__image {
    width: 48%;
  }

  .bigpost__tags {
    font-size: 0.8em;
  }

  .post__head {
    font-size: 1em;
    margin-bottom: 1em;
  }

  .post__info {
    font-size: 0.8em;
    margin-bottom: 1.5em;
  }

  .post__description {
    margin-top: 0.5em;
    margin-bottom: 0;
    font-size: 0.85em;
  }

  .main__sections {
    display: flex;
    flex-direction: row;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .posts__list {
    width: 60%;
    margin-top: 2em;
  }

  .posts__title {
    margin-top: 0;
  }

  .right__info {
    width: 30%;
    margin-top: 2em;
    padding-left: 2.5%;
  }

  .bigpost__item {
    display: flex;
    box-sizing: border-box;
    padding-right: 3.5%;

  }

  .post__tag {
    margin-top: 0;
  }

  .tag_link {
    margin: 0;
    padding: 0;
  }

  .bigpost__item::after {
    content: "";
    position: absolute;
    border-bottom: none;
  }

  .bigpost {
    margin-left: 2em;
  }

  .product__item {
    width: 30%;
  }

  .products__list {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 15px;
    gap: 6%;
  }

  .product__item {
    width: 30%;
  }

  .social_logo {
    width: 2em;
  }

  .product__header {
    margin-top: 0;
  }

  .popup__close {
    width: 65.5%;
  }

  .popup {
    width: 30%;
  }

  .textarea {
    padding-bottom: 15%;
  }
}