@font-face {
    font-family: 'Open Sans Regular';
    src: url('../fonts/OpenSans-Regular.woff') format('woff'),
        url('../fonts/OpenSans-Regular.ttf')  format('truetype'),
        url('../fonts/OpenSans-Regular.woff2') format('woff2');
    font-weight: 400;
}
@font-face {
    font-family: 'Open Sans Bold';
    src: url('../fonts/OpenSans-Bold.woff') format('woff'),
        url('../fonts/OpenSans-Bold.ttf')  format('truetype'),
        url('../fonts/OpenSans-Bold.woff2') format('woff2');
    font-weight: 700;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    scroll-behavior: smooth;
}
body {
    position: relative;
    
    box-sizing: border-box;
    
    font-family: 'Open Sans Regular', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;

    color: #323232;
    background: #ffffff;

}
.container {
	width: 1170px;
	margin: 0 auto;
    padding: 0 15px;
}
button,
button:hover,
button:focus {
	font-family: inherit;
	outline: none;
	border: none;
    cursor: pointer;
}
ul, li {
    list-style-type: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans Bold", sans-serif;
	color: #18121E;
  font-weight: 700;
}
p {
	color: #18121E;
}
a {
	text-decoration: none;
}
.btn {
    padding: 12px 24px;

    font-size: 14px;
    font-style: normal;
    font-weight: 700;

    color: #ffffff;
    background: #b59f5b;
}
.btn:hover {
    background: #323232;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
/* Pop-Up */
._hidden {
    visibility: hidden;
    display: none;
    transition: all 0s ease 0s;
}
.pop-up {
    position: absolute;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.pop-up__wrapper-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 55px 30px;
    width: 390px;
}
/*.pop-up-close::before {
    content: "";
    position: absolute;
    top: -28px;
    right: 0;
    background-image: url("../svg/form-x.svg");
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    cursor: pointer;
} */
.pop-up-close {
    position: absolute;
    top: -28px;
    right: 0;
    background-image: url("../svg/form-x.svg");
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.pop-up__form_label {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}
.pop-up__form_label:last-child {
    margin-bottom: 0;
}
.pop-up__form_label span {
    font-size: 13px;
    color: #000;
}
.pop-up__form_select {
    color: rgba(0,0,0,0.6);
    background-color: rgba(244, 247, 246, 1);
    padding: 18px 14px 18px 18px;
    border: 2px solid transparent;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../svg/form-arrows.svg");
    background-repeat: no-repeat;
    background-size: 9px 17px;
    background-position: center right 14px;
}
.pop-up__form_select:focus {
    transition: all 0s ease;
    outline: 2px solid #b59f5b;
}
.pop-up__form_label-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 3px;
}
.pop-up__form_label-wrapper-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}
.pop-up__form_label-checkbox {
    display: none;
}
.pop-up__form_label-checkbox-text::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
    
    width: 20px;
    height: 20px;
    
    background-image: url("../svg/form-empty-circle.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px;
}
.pop-up__form_label-checkbox:checked + .pop-up__form_label-checkbox-text::before {
    background-image: url("../svg/form-circle.svg");
  }
.pop-up__form_label-textarea {
    font-family: "Open Sans Regular";
    min-height: 130px;
    width: 90%;
    max-width: 354px;
    color: rgba(0,0,0,0.6);
    background-color: rgba(244, 247, 246, 1);
    padding: 18px 14px 18px 18px;
    border: 2px solid transparent;
    resize: none;
}
.pop-up__form_label-textarea:focus {
    transition: all 0s ease;
    outline: 2px solid #b59f5b;
}
.pop-up__form_btn {
    width: 100%;
}
/* Header */
.bruger-menu-wrapper {
    display: none;
}
.bruger-menu-line {
    border: 2px solid #fff;
    width: 24px;
}
.header {
    background: linear-gradient(90deg, rgba(10,12,25,0.6) 0%, rgba(10,16,30,0.6) 100%), url("../img/banner-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    padding-top: 28px;
}
.header__logo-mobile-wrapper {
    display: none;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__logo-img {
  width: 100%;
  height: 41px;
}
.header__menu-list {
    display: flex;
    align-items: center;
    gap: 35px;
}
.header__menu-link {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
}
a.header__menu-link:hover {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 2px;
    transition: all 0s ease;
}
/* Now Trending */
.now-trending {
    margin: 65px 0;
}
.now-trending__title {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 29px;
    width: 100%;
    text-align: center;
    margin-bottom: 28px;
}
.now-trending__title::after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 66px;
    height: 3px;
    border-bottom: 3px solid #e1d9bd;
}
.now-trending__cards-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.trend1 {
    background-image: linear-gradient( transparent, rgba(0,0,0,0.6) 0), url(../img/trend1.jpg);
}
.trend2 {
    background-image: linear-gradient( transparent, rgba(0,0,0,0.6) 0), url(../img/trend2.jpg);
}
.trend3 {
    background-image: linear-gradient( transparent, rgba(0,0,0,0.6) 0), url(../img/trend3.jpg);
}
.trend4 {
    background-image: linear-gradient( transparent, rgba(0,0,0,0.6) 0), url(../img/trend4.jpg);
}
.now-trending__card {
    display: flex;
    align-items: flex-end;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 20px 15px;
    width: 450px;
    height: 348px;
    box-sizing: border-box;
}
.now-trending__card-offer-wrap {
    border: 3px solid #b59f5b;
    padding: 38px 30px 30px;
}
.now-trending__card-offer-tag-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}
.now-trending__card-offer-title {
    display: block;
    margin-top: 10px;
    margin-bottom: 19px;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #ffffff;
}
.now-trending__card-offer-title:hover {
    color: #b59f5b;
}
/* Main */
.main__title {
    width: 700px;
    padding: 174px 0 124px;
    font-size: 45px;
    line-height: 75px;
    text-align: center;
    margin: 0 auto;
    color: #ffffff;
    text-transform: uppercase;
    text-indent: -4px;
}
/* News Feed */  
.news-feed-flex {
    display: flex;
    justify-content: space-between;
}
.news-feed__main-news-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 60px;
}
.news-feed__main-news {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: 780px;
}
.news-feed__main-news_img-wrapper {
    width: 381px;
    height: 294px;
}
.news-feed__main-news_offer-wrapper {
    width: 383px;
}
.news-feed__main-news_offer-tag-wrap {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-bottom: 5px;
}
.tag {
    text-transform: uppercase;
    font-size: 14px;
    color: #b59f5b;
    font-weight: 700;
}
.tag:hover {
    text-decoration: underline;
}
.news-feed__main-news_offer-title {
    margin-top: 14px;
    margin-bottom: 19px;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #0f0d0e;
}
.news-feed__main-news_offer-title:hover {
    color: #b59f5b;
}
.news-feed__main-news_offer-date-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    margin-bottom: 48px;
      text-indent: -3px;
}
.news-feed__main-news_offer-date, .news-feed__main-news_offer-author {
    font-size: 12px;
    color: #888888;
    font-weight: 700;
}
.news-feed__main-news_offer-author {
    color: #000;
}
.news-feed__main-news_offer-text {
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
}
.news-feed__main-news_offer-text-wrap:first-child {
    margin-bottom: 15px;
}

.news-feed__info-post_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 60px;
    width: 270px;
}
.news-feed__info-post_new-post-section-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.news-feed__info-post_new-post-title {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 29px;
    width: 100%;
    text-align: center;
    margin-bottom: 28px;
}
.news-feed__info-post_new-post-title::after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 66px;
    height: 3px;
    border-bottom: 3px solid #e1d9bd;
}
.news-feed__info-post_new-post-wrapper {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 272px;
}
.news-feed__info-post_new-post {
    display: flex;
    align-items: start;
    gap: 20px;
}
.news-feed__info-post_new-post-img {
    width: 70px;
    height: 70px;
}
.news-feed__info-post_new-post-offer {
    display: flex;
    flex-direction: column;
}
.news-feed__info-post_new-post-offer-date {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 9px;
    color: #acacac;
}
.news-feed__info-post_new-post-offer-title {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 18px;
}
.news-feed__info-post_new-post:hover .news-feed__info-post_new-post-offer-title {
    color: #b59f5b;
}
.news-feed__info-post_new-post-form {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 60px;
}
.news-feed__info-post_new-post-input {
    width: 223px;
    height: 48px;
    padding: 18px 0 18px 18px;
    border: none;
    background: #f4f7f6;
    outline: none;
    box-shadow: none;
}
.news-feed__info-post_new-post-input:focus, .news-feed__info-post_mailing-input:focus {
    outline: 1px solid #b59f5b;
    outline-offset: -1px;
    transition: all 0s ease 0s;
}
.news-feed__info-post_new-post-btn {
    background-color: #b59f5b;
    background-image: url("../svg/search.svg");
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: center;
    width: 48px;
    height: 48px;
}
.news-feed__info-post_new-post-btn:hover {
    background-color: #323232;
}
.news-feed__info-post_mailing-input {
    width: 100%;
    height: 48px;
    padding: 18px 0 18px 18px;
    border: none;
    background: #f4f7f6;
    box-sizing: border-box;
    margin-bottom: 18px;
    outline: none;
    box-shadow: none;
}
.news-feed__info-post_mailing-btn {
    width: 100%;
    height: 50px;
}

.news-feed__info-post_tag-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 5px;
}
.news-feed__info-post_tag {
    border: 3px solid #eeeeee;
    padding: 0 12px;
    color: #0f0d0e;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    height: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-feed__info-post_tag:hover {
    border: 3px solid #b59f5b;
}
.news-feed__info-post_theme-list {
    display: flex;
    flex-direction: column;
}
.news-feed__info-post_theme-item {
    width: 100%;
    padding: 19px 0 16px;
    border-bottom: 1px solid #eeeeee;
}
.news-feed__info-post_theme-link {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    color: #000;
}
.news-feed__info-post_theme-link:hover {
    color: #b59f5b;
}
.news-feed__info-post_theme-number {
    position: absolute;
    top: -2px;
    padding-left: 5px;
    font-size: 12px;
    color: #b59f5b;
}

/* Our products */
.our-products {
    margin: 70px 0;
}
.our-products__cards-wrapper {
    display: flex;
    justify-content: space-between;
}
.our-products__card {
    position: relative;
    font-weight: 700;
    width: 350px;
    z-index: 5;
    display: flex;
    justify-content: center;
    margin-top: 172px;
}
.our-products__card-offer {
    z-index: 5;
    padding: 50px 20px 70px;
    border: 3px solid #b59f5b;
}
.our-products__card-img {
    position: absolute;
    top: -172px;
    z-index: 1;
}
.our-products__card_title {
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #0f0d0e;
}
.our-products__card_text {
    font-size: 15px;
}
.our-products__card_text-link {
    color: #b59f5b;
    font-weight: 700;
}
.our-products__card_text-link:hover {
    text-decoration: underline;
}
.our-products__card_price-btn {
    margin-top: 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.our-products__card_price-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.our-products__card_price {
    text-decoration: line-through;
    font-size: 14px;
}
.our-products__card_price-discount {
    font-size: 20px;
}
.our-products__card_btn {

    text-transform: uppercase;
}
/* Footer */
footer {
    padding-bottom: 50px;
}
.footer__icon-link001,
.footer__icon-link002,
.footer__icon-link003 {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 20px;
    height: 20px;
}
.footer__icon-link001 {
    display: block;
    background-image: url("../svg/001-dribbble.svg");
}
.footer__icon-link002 {
    background-image: url("../svg/002-pinterest.svg");
}
.footer__icon-link003 {
    background-image: url("../svg/003-tumblr.svg");
}
.footer__icon-link-wrapper ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background-color: #f4f7f6;
    padding: 31px 0 32px;
}
.footer__link-wrap {
    text-align: center;
    padding-top: 74px;
}
.footer__link {
    color: #999999;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .container {
        max-width: 670px;
    }
    .header {
        background: linear-gradient(90deg, rgba(10,12,25,0.6) 0%, rgba(10,16,30,0.6) 100%), url(../img/banner-bg-tablet.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center top;
    }
    .bruger-menu-wrapper {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .header__menu {
        display: none;
    }
    .now-trending__cards-wrapper {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    .trend1, .trend2, .trend3, .trend4 {
        height: 250px;
        width: 49%;
        background-position: center bottom;
    }
    .news-feed__main-news {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .news-feed__main-news::after {
        content: "";
        border: 3px solid #eeeeee;
        width: 100%;
    }
    .main__title {
        font-size: 40px;
    }
    .now-trending__title {
        font-size: 18px;
    }
    .now-trending__card-offer-title, 
    .news-feed__main-news_offer-title,
    .our-products__card_title {
        font-size: 17px;
    }
    .our-products__cards-wrapper {
        flex-wrap: wrap;
        justify-content: normal;
        gap: 24px;
    }
    .our-products__card {
        width: 48%;
        margin-top: 194px;
    }
    .our-products__card-img {
        top: -194px;
    }
}
@media (max-width: 741px) {
    .container {
        width: 90%;
    }
    .header {
        background: linear-gradient(90deg, rgba(10,12,25,0.6) 0%, rgba(10,16,30,0.6) 100%), url(../img/banner-mobile.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center bottom;
    }
    .header-flex {
        justify-content: flex-end;
    }
    .header__logo-wrapper {
        display: none;
    }
    .header__logo-mobile-wrapper {
        display: block;
        padding-top: 170px;
    }
    .main__title {
        padding: 40px 0 215px;
        font-size: 26px;
        width: 90%;
        line-height: 36px;
    }
    .header__logo-img {
        height: 61px;
    }
    .news-feed-flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 43px;
    }
    .our-products__cards-wrapper {
        align-items: center;
        flex-direction: column;
    }
    .trend1, .trend2, .trend3, .trend4  {
        width: 90%;
        background-position: center;
    }
    .now-trending__card {
        justify-content: center;
    }
    .our-products__card {
        max-width: 350px;
        width: 90%;
        margin-top: 254px;
        height: auto;
    }
    .our-products__card-img {
        top: -254px;
    }
    .news-feed__main-news_offer-wrapper {
        width: 90%;
    }
    .news-feed__main-news-wrapper {
        width: 100%;
    }
    .news-feed__main-news_img-wrapper {
        width: auto;
        height: auto;
    }
    .news-feed__main-news_img-wrapper img {
        width: 100%;
    }
    .pop-up__wrapper-form {
        max-width: 90%;
        box-sizing: border-box;
    }
    .pop-up__form_label-textarea {
        max-width: 90%;
        min-height: 30px;
    }
}