@charset "UTF-8";
@font-face{
  font-family: 'MrsSaintDelafield';
  src: url(MrsSaintDelafield-Regular.ttf);
}

h1 {
  font-family: 'MrsSaintDelafield';
  font-size: 6rem;
  margin: 0;
  padding: 0;
  line-height: 8rem;
  font-weight: 100;
}

.footer-logo,
.script,
.second-line{
  font-family: 'MrsSaintDelafield';
  font-weight: 400;
}

/*REBOOT CSS*/
/* Убираем внутренние и внешние отступы */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Устанавливаем базовые настройки шрифтов */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #444444;
    text-align: left;
    background-color: #fff;
    letter-spacing: 0em;
    position: relative;
    overflow-x: hidden;
}

/* Улучшаем внешний вид форм и кнопок для различных браузеров */
input,
button,
textarea,
select {
    font: inherit;
    margin: 0;
}

/* Убираем стандартные стили для списков */
ul,
ol {
    list-style: none;
}

/* Устанавливаем стандартные стили для ссылок */
a {
    color: inherit;
    text-decoration: none;
}

/* Улучшаем отображение таблиц */
table {
    border-collapse: collapse;
}

/* Улучшаем внешний вид изображений и видео */
img,
video {
    max-width: 100%;
    height: auto;
    width: 100%;
}

img.alignright{
  float: right;
  margin: 7px 0 7px 7px;
  width: unset;
  max-width: unset;
}

img.alignleft{
  float: left;
  margin: 7px 7px 7px 0px;
  width: unset;
  max-width: unset;
}

body{
  font-family: 'Montserrat', sans-serif;
}

p{
  margin-bottom: 0.5rem;
}

.title{
  font-family: 'PT Serif', serif;
}

.dark,
.dark .title,
.dark .product-section-title{
  color: #ffffff;
}

.required{
  color: #CD242B;
}

.invalid{
  background-color: #fff8f8;
  color: #CD242B;
  border: 1px solid!important;
}

.gold{
  color: #FFD78A
}
h1{
  text-align: center;
  line-height: 5rem;
  margin: 3rem 0 2rem 0;
  font-size: 6rem;
  word-spacing: 0.5rem;
}

.container {
  width: 90%;
  max-width: 480px;
  padding: 0px;
  margin: 0 auto;
}

.container-slider{
  position: relative;
  margin: 0;
}

.col-container{
  display: flex;
  flex-direction: column;
}

section{
  position: relative;
  /* padding: 2rem 1rem 3rem 1rem; */
  padding: 2rem 0 3rem 0;
}


/* .df-book-title,
.df-book-page1,
.df-book-page2{
  display: none!important;
}

.df-popup-thumb .df-book-wrapper{
  background-color:transparent!important;
  transition: unset!important;
  transform: none!important;
  box-shadow: none!important;
  display: block!important;
} */

.df-popup-thumb {
  display: none!important;
}

/* .df-popup-thumb img {
  transition: none!important;
}

.df-popup-thumb img {
  visibility: hidden; 
}

.df-popup-thumb .df-book-cover:after{
  display: block;
  content: "CATALOG"!important;
  height: 100%;
  width: 100%;
  background: none!important; 
  box-shadow:  none!important; 
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  color: #C2BEBE;
}

.df-book-cover{
    background-size: unset!important; 
    overflow: visible!important; 
    box-shadow: none!important; 
    z-index: 1;
} */



/* .swiper-container-reviews{
  overflow: hidden;
} */

.sticky-header {
  background-color: rgb(2 2 2 / 30%);
  /*background: linear-gradient(to bottom, rgba(0, 0, 0, .9), rgba(0, 0, 0, 0.4));*/
  color:#ffffff;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100px;
  padding-top: 20px;
  z-index: 1000;
  transition: top 0.5s;
  backdrop-filter: blur(14px);
}

#header.scrolled{
  top: -100px; 
}

.logo-text {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 20px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left, .header-right {
  display: flex;
  align-items: center;
  flex-grow: 1;
  /* height: 100px; */
}

.header-left {
  justify-content: flex-start; 
}

.header-right {
  justify-content: flex-end; 
}

.burger-menu{
  cursor: pointer;
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  width: 60px;
  height: 60px;
  background: rgb(2 2 2 / 10%);
  border-radius: 50%;
  padding: 8px;
  text-align: center;
  border: 1px solid rgb(255 255 255 / 10%);
}
.desktop-menu{
  display: none;
}

#mobile-menu{
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%; 
  background-color: #000000;
  box-shadow: 4px 0px 5px rgba(0,0,0,0.2); 
  transition: transform 0.3s ease-in-out;
  z-index: 1000; 
  display:block;
  padding: 1rem 1.5rem 1rem 2rem;
  /* color:#FFD78A;  */
  color:#ffffff;
}

#mobile-menu li{
  line-height: 2rem;
}

#mobile-menu.menu-closed {
  transform: translateX(-100%); 
}

#mobile-menu.menu-open {
  transform: translateX(0);
}
#mobile-menu-close{
  cursor:pointer;
}

#mobile-menu-close img{
  width: 32px;
}

.mobile-menu-header{
  text-align: right;
}

.mobile-menu-container > .menu > li{
  text-transform: uppercase;
  margin: 1rem 0;
  font-weight: 500;
}

.mobile-menu-container .sub-menu{
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease-out;
  padding: .5rem 0 0 0;
  margin:0 0 0 1.5rem;
}

.mobile-menu-container .sub-menu li {
  text-transform: none;
  margin: 0.25rem 0;
}

.mobile-menu-container .menu-item-has-children > a{
  position: relative;
}

.mobile-menu-container .menu-item-has-children > a::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(135deg);
  margin-left: 10px;
  top:2px;
  transition: transform .3s ease, top .3s ease;
}

.mobile-menu-container .menu-item-has-children .active{
  color:#FFD78A
}

.mobile-menu-container .menu-item-has-children > a.active::after{
  transform: rotate(-45deg);
  top:6px;
}

.bg-img{
  background-size: cover;
  background-position: center;
}
footer.bg-img{
    background-size: cover;
    background-position: left;
}

.social-icon:first-child{
  margin-left:0;
}
.social-icon {
  margin-left: 15px;
  font-weight: bold;
  width: 60px;
  height: 60px;
  background: rgb(2 2 2 / 10%);
  border-radius: 50%;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background .3s ease;
  border: 1px solid rgb(255 255 255 / 10%);
}
.social-icon svg{
  fill:#ffffff;
  transition: fill .3s ease;
}
.social-icon:hover{
  background: #ffffff;
  transition: background .3s ease;
}
.social-icon:hover svg{
  fill:#000000;
  transition: fill .3s ease;
}

footer{
  padding: 2rem 0;
}

footer .menu a{
  color: #C2BEBE;
}

footer .menu a:hover{
  opacity: 1;
  text-decoration: underline;
}

footer .contacts li{
  line-height: 2rem;
  font-size: .9rem;
}

.footer-container{
  display: flex;
  flex-direction: column;
}

.footer-top{
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: center;
}

.footer-menu{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-menu li{
  line-height: 2rem;
}

.footer-menu .title{
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-align: left;
}

.footer-social{
  display: flex;
  gap: .05rem;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  margin: 1.5rem 0;
}

.footer-social .social-icon{
  margin:0;
  border: 1px solid rgb(255 255 255 / 15%);
  width: 60px;
  height: 60px;
  text-align: center;
}

.social-icon img{
  width: 32px;
}

.footer-top .footer-social{
  display: none;
}
.footer-copywrite .footer-social{
  display: flex;
}



.footer-copywrite{
  text-align: center;
  color: #C2BEBE;
}
.footer-copywrite .slogan{
  margin-top: 2rem;
  width:320px;
  height: 40px;
  margin: 2rem auto;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.title,
h2{
  font-size: 1.9rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: normal;
}
.product-section-title{
  font-family: 'PT Serif', serif;
  font-size: 1.9rem;
  margin-bottom: 1rem;
  text-align: center;
}

.btn, a.btn{
  display: block;
  width: 100%;
  padding: 0.9rem;
  font-size: 15px;
  border-radius: 100px;
  border: none;
  text-transform: uppercase;
  background: #5EB266;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  max-width: 280px;
  margin: 3rem auto 0 auto;
  transition: background .3s ease;
  box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 22%);
}

.btn:hover, a.btn:hover{
  background:#46924D;  
  transition: background .3s ease;
}

#more-categories {
  position: relative;
  padding: 0.9rem 1.4rem 0.9rem 1rem
}

#more-categories::after{
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(135deg);
  margin-left: 10px;
  top: 19px;
  transition: transform .3s ease, top .3s ease;
}

a.inline-red{
  color: #CD242B;
  position: relative;
  padding-right: 20px;
  border-bottom: 1px solid;
  transition: border-bottom .3s ease;
}

a.inline-red::after {
  content: url('../im/icons/arrow-right.svg'); 
  position: absolute;
  right: 0; 
  top: 0; 
}

a.inline-red:hover{
  border-bottom: 1px solid transparent;  
  transition: border-bottom .3s ease;
}


.content{
  margin:1rem 0;
}

/* SECTIONS */

.nologo{
  padding-top: 18rem;
}

.about-title{
  font-family: 'PT Serif', serif;
  font-size: 2rem;
  margin: 0;
  padding: 0;
  line-height: 5rem;
  font-weight: normal;
  text-align: center;
}

.about-text p{
 text-align: justify;
}

section.heroImg{
  margin-top: -120px;
  padding-top: 18rem;
  padding-bottom: 6rem;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  }

section.heroImg img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.footer-subscribe{
  overflow:hidden;
}

.heroImg .script{
  font-size: 6.5rem;
  margin-left: 0rem;
  line-height: 3.5rem;
  display: block;
  text-align: left;
}
.heroImg .second-line{
  font-size: 4rem;
  text-align: left;
  display: block;
}

.heroImg .title{
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
}



.hero-text{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center; 
}

.hero-text.nologo{
  padding-top: 7rem;
}

.img-darken-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.3));
}



.logo{
  width: 160px;
  height: 106px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 7rem auto;
}
.footer-logo{
  width: 160px;
  height: 106px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 1rem;
}

.logo-container{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.slide-brand{
  width: 130px;
  height: 130px;
  background-color:#ffffff;
  margin:8px;
}

.slide-partner,
.slide-article{
  margin:0 10px;
}

.b-logos{
  width: 80%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 90%;
  margin: 0.5rem auto;
}

.odd-logo,
.even-logo{
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.p-logo-container{
  height: 100px;
  background-color: #ffffff;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}



/* .product-line  .swiper-slide{
  width: 150px;
  height: 90px;
  background-color:#ffffff;
} */

.prod-slide {
  margin: 8px;
  box-shadow: 0 0 7px 0 rgb(0 0 0/18%);
  border: none;
  /* white-space: nowrap; */
  overflow: hidden;
}


.pl-container{
  padding: 0rem;
}

.pl-title{
  font-size: 16px;
  font-family: 'PT Serif';
  text-align: center;
  background: #e3e3e3;
  padding: 1rem 0;
  color:#242424;
  margin:0;
}

/* .swiper-button-next,
.swiper-button-prev{
  display:none;
} */

.slick-next::before,
.slick-prev::before {
  content: none;
}

.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.35;
  background-color: transparent;
  transition: opacity 0.3s ease; /* Добавляем плавное изменение прозрачности */
}


.slick-arrow{
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: transparent;
  background-color: transparent;
  border: none;
  width: 27px;
  height: 44px;
  position: absolute;
  z-index: 99;
  cursor: pointer;
}

.slick-prev{
  background-image: url('../im/icons/sl_arrow_left_g.svg')!important;
  top: 45%;
  left: -2rem;
}

.slick-next{
  background-image: url('../im/icons/sl_arrow_right_g.svg')!important;
  top: 45%;
  right: -2rem;
}

.dark .slick-prev{
  background-image: url('../im/icons/sl_arrow_left.svg')!important;
}

.dark .slick-next{
  background-image: url('../im/icons/sl_arrow_right.svg')!important;
}
.slick-disabled{
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:before {
  font-size: 8px;
  color: #b78421;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #FFD78A;
}

.dark .slick-dots li button:before {
  color: #FFD78A;
}

.dark .slick-dots li.slick-active button:before {
  color: #FFD78A;
}

.slick-dots li {
  width: 10px;
}





/* .swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after{
  content:url('../im/icons/sl_arrow_left_g.svg');
}
.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after{
  content:url('../im/icons/sl_arrow_right_g.svg');
}

.dark .swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after{
  content:url('../im/icons/sl_arrow_left.svg');
}
.dark .swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after{
  content:url('../im/icons/sl_arrow_right.svg');
} */

/* 
.swiper-pagination-reviews{
  text-align: center;
  margin-top: 0.5rem;
}

.reviews .swiper-pagination-bullet{
  width: 6px;
  height: 6px;
  background: #FFD78A;
  opacity: .25;
}

.reviews .swiper-pagination-bullet-active{
  opacity: 1;
  background: #FFD78A;
}  

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
} */

.products-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* по умолчанию 2 столбца */
  grid-gap: 20px; /* отступы между товарами */
}

.product {
  position: relative;
  overflow: hidden; 
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transform: translateY(20px);
  box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 22%);
}

.product.show{
  opacity: 1;
  transform: translateY(0px);
}

.product-line{
  background:#ffffff;
}

.product-line .content p{
  text-align: justify;
}

.prodLine-bg-images{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fh_bg_img_top_R,
.fh_bg_img_mid_L,
.fh_bg_img_edge_L,
.fh_bg_img_edge_R,
.bg_video_bottom_L,
.bg_footer_subscribe_TL,
.bg_footer_subscribe_BR{
  display:none;
}

.product-background {
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform .5s ease;
}

.product:hover .product-background {
  transform: scale(1.05);
}

.product:nth-child(1n+9) { 
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.5s, opacity 0.5s linear;
  height: 0;
  overflow: hidden;
}




.product:before {
  content: '';
  display: block;
  /* padding-top: 160%; */
  padding-top: 175px;
}

.product-title{
  background: linear-gradient(to right, #85181A, #CD242B, #85181A);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 90%;
  text-align: center;
  color: white;
  padding: 5px;
  margin: 10px auto;
  font-family: 'PT Serif';
  font-size: 14px;
  font-size: .8rem;
  font-weight: 600;
}

.review-container{
  background: #ffffff;
  padding: 1.5rem;
  font-size: .9rem;
  color:#000000;
}
.review-header{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.r-name{
  font-weight: 600;
}
.r-date{
  font-size: 0.8rem;
}
.review-img{
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.feedback-notice{
  text-align: center;
  margin-top: 1.5rem;
  color: #fff;
}


.video{
  padding-bottom:1rem;
  background-image: none;
}

.video-cover{
  /* width: 320px;
  height: 180px; */
  position: relative;
  cursor:pointer;
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
}

.video-wrapper{
  position: relative;
  width: 100%;
  max-width: 1000px;
  padding-top: 56.25%; 
  overflow: hidden;
  border-radius: 25px;
  margin: 0 auto;
}

.video-wrapper iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

  .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    width: 90%;
    position: relative;
  }

  .close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 0.1rem;
    top: 0.1rem;
    width: 32px;
    height: 32px;
    text-align: center;
    padding-top: 10px;
    line-height: 1rem;
    display: block;
    z-index: 99;
  }

  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

.article-container{
  background: #ffffff;
  padding: 1.5rem;
  font-size: 1rem;
  border: 1px solid #E3E3E3;
}

.article-title{
  font-family: 'PT Serif';
  font-size: 1.3rem;
  line-height: 2rem;
  margin: 0.8rem 0 0.3rem 0;
  font-weight: 600;
}

.instagram-header{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
}

.instagram-header img{
  width: 50px;
  height: auto;
}

.instagram-header .title{
  margin: 0;
  text-align: left;
  line-height: 2rem;
  font-size: 2rem;
}

.instagram-header .info{
  font-size: 1rem;
  font-family: 'Montserrat';
}

a.more-articles-top,
a.follow-instagram-top{
  display: none;
}

.more-articles-bottom,
a.follow-instagram-bottom{
  display: block;
  margin: 0;
  width: 100%;
  max-width: 100%;
  margin: 1rem 0 0 0;
}

.title-container{
  display:block;
}

/*B LOG */
.blog-posts-list {
  display: flex;
  flex-wrap: wrap;
  gap:20px
}

.blog-posts-list .post-item {
  padding: 15px;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #E3E3E3;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.post-item img{
  width: 100px;
  height: auto;
}
.post-item-link{
  padding: 0 15px;
  display: block;
  letter-spacing: 0em;
  text-align: left;
}
.post-item-title{
  font-family: PT Serif;
  font-size: 22px;
  line-height: 28px;
}
.post-item-more{
  display:none;
}

.single-post-title{
  font-family: PT Serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0em;
  text-align: left;  
  margin: 0 0 1rem 0;
}

.single-post-content{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
}

.single-post-content p{
  text-align: justify;
}

.single-post-content .column {
  flex: 1;
}

.single-post-content .image,
.single-post-content .text {
  flex-basis: 100%;
  width: 100%;
}

.single-post-content .image{
  margin-bottom: 1rem;
}


.single-post-content .image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}


#contactsmap{
  width: 100%;
  height: 400px;
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0 0 0;
}

.pager .item {
  font-family: PT Serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e3e3e3;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 4px;
}

.pager .item.current{
  background: #CD242B;
  color: #fff;
  border: 1px;
}

.pager .item.arrow {
  border:none;
}
.pager .item.arrow img{
  width: 18px;
}

.offer-item{
    padding: 0;
    background-color: #fbfbfb;
    border: 1px solid #e3e3e3;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.offer-item-title{
  font-family: PT Serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0em;
  text-align: left;
  margin: 2rem 0rem;
}

.offer-item-description{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  margin: 0 1.5rem 2rem 1.5rem;
}
.offer-item-description h3{
  margin: 1rem 0;
}
.offer-item-description ol,
.single-post-content ol{
  list-style: decimal;
}
.offer-item-description ul,
.single-post-content ul{
  list-style: disc;
}
.offer-item-description ul li,
.offer-item-description ol li,
.single-post-content ul li,
.single-post-content ol li{
  margin: 0.5rem 0 0.5rem 1.5rem;
}

.offer-add-resume{
  background-color: #fff;
  padding: 1rem 0 1rem 0;
  border-top: 1px solid #e3e3e3;
}

.offer-add-resume button{
  margin: 1rem auto;
}
.footer-subscribe-container{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  position: relative;
}

.subscription-form {
  display: flex;
  flex-direction: column;
}

.subscription-form .form-group,
.page-contacts-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  margin-top: 1rem;
}

.page-contacts-form .form-field {
  width: 100%;
  margin-top: 0;
  max-width: 100%;
  background-color: #f5f5f5;
  border: 1px solid #ececec;
  border-radius: 5px;
  outline: none;
  padding: 1rem;
  font-size: 1.2rem;
  height: 52px;
}

.page-contacts-form textarea{
  min-height: 120px;
}
.page-contacts-form label{
  font-weight: 500;
}

.page-contacts-form .fields-flex{
  width: 100%;
  display: flex;
  flex-direction: column;
}

.subscription-form .form-field,
.subscription-form .form-button {
  width: 100%;
  margin-top: .5rem;
  max-width: 100%;
}

.footer-subscribe input{
  height: 52px;
  border-radius: 5px;
  outline: none;
  padding: 1rem;
  border: none;
  font-size: 1.2rem;
}

.footer-subscribe-thankyou{
  display:none;
}

.contact-form-thankyou{
  display:none;
  text-align: left;
}

.footer-subscribe-thankyou .title{
  font-size: 3rem;
  text-align: left;
}

#resume-upload-form{
  display:none;
}

.resume-upload-form{
  /* display:none; */
  text-align: center;
  display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

input[type="file"] {
  display: none;
}

.resume-file-upload{
  padding: 6px 12px;
  cursor: pointer;
  color: #CD242B;
  text-decoration: underline;
  font-size: 17px;
  line-height: 2rem;
}

.file-upload-icon{
  width: 16px;
  margin-right: 6px;
  vertical-align: middle;
}

.submit-resume{
  padding: 0.9rem 4rem;
}

.submit-resume:disabled{
  box-shadow:none;
  opacity: .5;
}

/* input:required:invalid,
textarea:required:invalid{
  border: 1px solid red;
  color:#CD242B;
  font-weight: bold;
}

input:required:invalid:not(:focus):not(:placeholder-shown) {
  border: 2px solid red;
}

input:required:invalid:focus {
  border-color: darkred;
} */

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: none; 
  background-color: #CD242B;
  color: white;
  border: none;
  cursor: pointer;
  z-index: 9;
}
#backToTop img{
  width: 20px;
  height: auto;
  vertical-align: bottom;
}



@media (max-width: 577px) {
  section.products{
      background-image: none!important; 
  }
}

@media (min-width: 578px) {
  .container {
    width: 562px;
    padding: 0;
    margin: 0 auto;
    max-width: unset;
  }
  
  section{
    position: relative;
    padding: 3rem 0 3rem 0;
  }
  .sticky-header {
    height: 120px;
    padding-top: 30px;
    background-color: rgb(2 2 2 / 50%);
  }

  #header.scrolled {
    top: -120px;
  }
  
  section.heroImg {
    padding-top: 44%;
  }

  section.articles{
    background-image: url('../im/wheat_3.webp '),url('../im/wheat_2.webp '); background-position: 100% 0%,100% 55%; background-repeat: no-repeat,no-repeat;
  }

  section.other-articles{
    background-color:#fafafa;
  }

  .nologo{
    padding-top: 0;
  }

  .hero-text.nologo {
    padding-top: 6rem;
  }

  .logo-container {
    display:none;
  }

  .heroImg .script{
    margin-left: 2rem;
    line-height: 6.5rem;
  }
  .heroImg .second-line{
    margin-left: 4rem;
  }

  .fh_bg_img_top_R,
.fh_bg_img_mid_L,
.fh_bg_img_edge_L,
.fh_bg_img_edge_R,
.bg_video_bottom_L,
.bg_footer_subscribe_TL,
.bg_footer_subscribe_BR{
  display: block;
  position: absolute;
  max-width: 400px;
}

.fh_bg_img_mid_L{
  left:-100px;
  max-width: 200px;
  top: 20%;
}

.fh_bg_img_top_R{
  top:0;
  right: -50px;
  max-width: 200px;
}

.fh_bg_img_edge_L{
  left: -50px;
  bottom: -250px;
  max-width: 250px;
}

.fh_bg_img_edge_R{
  right: -100px;
  bottom: -200px;
}

.bg_video_bottom_L{
  left: -50px;
  max-width: 300px;
  bottom: -40%;
}

.bg_footer_subscribe_TL{
  top: -150px;
  left: -350px;
  max-width: 400px;
}

.bg_footer_subscribe_BR{
  bottom: -330px;
  right: -460px;
  max-width: 500px;
}


.about-title{
  font-family: 'MrsSaintDelafield';
  font-size: 5rem;
  margin: 1rem 0 0 0;
  padding: 0;
  line-height: 8rem;
  font-weight: 100;
  text-align: center;
}


  .container-slider{
    /* margin: 0 3rem; */
    margin: 0;
  }

  /* .swiper-button-next, .swiper-container-rtl .swiper-button-prev{
    right: -3rem;
    left: auto;
    top: 50%;
  }

  .swiper-button-prev, .swiper-container-rtl .swiper-button-next{
    left: -3rem;
    right: auto;
    top: 50%;
  }
  
  .swiper-pagination-reviews{
    display: none;
  } */

  h2, .title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }

  /* .hero .title, */
  .heroImg .title{
    margin: 6rem auto 0 auto;
  }

  /* .hero .second-line, */
  .heroImg  .second-line{
    font-size: 5rem;
    line-height: 5rem;
    text-align: center;
  }

  .swiper-button-next, .swiper-button-prev {
    display: block; 
  }

  .products-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .product:before {
    content: '';
    display: block;
    padding-top: 270px;
  }


  .pl-title{
    font-size: 20px;
    padding: 1rem 0;
  }

  .product-title {
    border-radius:15px 15px 15px 0;
    font-size: 1.3rem;
    font-weight: 100;
    letter-spacing: 1px;
    left: 10px;
    right: unset;
    width: unset;
    padding: 10px 15px;
  }

  .video{
    background-repeat: no-repeat
  }

  .video-cover:before {
    content: '';
    display: block;
    /* padding-top: 60%;  */
  }

  .title-container{
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;

  }

  .instagram-header img{
    width: 60px;
    height: auto;
  }

  a.more-articles-top,
  a.follow-instagram-top{
    display: block;
    padding: 1rem 2rem;
    margin: 0;
    width: unset;
  }
  a.more-articles-top{
    margin-top: 1rem;
    position: relative;
    padding: 0.9rem 3.6rem 0.9rem 3rem;
  }

  .more-articles-bottom,
  a.follow-instagram-bottom{
    display: none!important;
  }


  .footer-top{
    flex-direction: row;
  }

  .footer-social {
    gap: 1rem;
    justify-content: center;
  }

  .footer-menu {
    justify-content: flex-start;
    gap: 4rem;
  }

  .footer-copywrite .slogan {
    width: 400px;
    height: 50px;
    margin: 3rem auto;
  }
  .p-logo-container {
    height: 120px;
    margin-bottom: 1.2rem;
  }

  .blog-posts-list .post-item {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: left;
  }
  .post-item img {
    width: 100%;
    height: auto;
  }

  .post-item-link {
    padding: 15px 0 0 0;
  }

  .post-item-more{
    display: block;
    color: #cd242b;
    margin-top: 10px;
  }

  .post-item-more .text{
    text-decoration: underline;
  }

  .subscribe-title .title{
    line-height: 3.5rem;
    font-size: 3rem;
  }
  .subscription-form {
      flex-wrap: wrap;
  }

  .subscription-form .form-group:not(:last-child) {
      width: 100%; 
  }

  .subscription-form .form-field {
      flex-grow: 1; 
  }

  .offer-item {
    margin-bottom:.5rem;
  }

  .resume-upload-form{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .offer-add-resume {
    padding: 0 0 2rem 0;
    background-color: transparent;
    border-top: none;
  }

}


/* Медиазапрос для небольших настольных компьютеров: минимальная ширина 1200px */
@media (min-width: 1116px) {
  .container {
      width: 1000px;
  }
  #eapps-google-reviews-4aa7f460-bd7f-4bdd-a718-d2d49cefa9e5 .swiper-slide{
    width: 242.5px !important;
  }
  .burger-menu{
    display:none;
  }
  
  .desktop-menu{
    display: block;
  }

  .desktop-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }
  
  .desktop-menu li {
    position: relative;
    margin-right: 20px;
  }

  .desktop-menu li:last-child {
    margin-right: 0;
}
 
  .desktop-menu .menu-item-has-children > a::after{
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(135deg);
    margin-left: 8px;
    top: 6px;
    transition: transform .3s ease, top .3s ease;
  }
  .desktop-menu .menu-item-has-children:hover > a::after{
    transform: rotate(-45deg);
    top:10px;
  }

  .desktop-menu .menu-item-has-children{
    margin-right: 30px;
  }
 
  .desktop-menu a {
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    font-size: .9rem;
    letter-spacing: .5px;
    padding: 1rem 0.5rem;
    transition: color 0.3s ease; 
  }

  .desktop-menu .sub-menu {
    display: block;
    position: absolute;
    padding: 1.5rem 0.5rem;
    margin: 0.5rem 0 0 -0.5rem;
    top: 120%;
    left: -5%;
    z-index: 1000;
    background-color: #19150E;
    border-radius:10px;
    min-width: 200px; 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.3s ease, visibility 0.3s ease; 
  }

  .desktop-menu .sub-menu li {
    padding: 0px 1rem;
    white-space: nowrap;
    line-height: 2.4rem;
  }
  .desktop-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  .desktop-menu .sub-menu a {
    padding: 10px;
    color: #fff; 
  }
  .desktop-menu li:hover > a, .desktop-menu li:hover > a:hover {
    color: #FFD78A;
  }

  section {
    position: relative;
    padding: 2rem 0 4rem 0;
  }

  .b-logos {
    width: 90%;
    height: 80%;
    margin: 1rem auto;
  }


  .slide-brand{
    width: 240px;
    height: 140px;
    background-color:#ffffff;
  }
  .p-logos {
    width: 100%;
    height: 90%;
    margin: 0.5rem auto;
}

  .p-logo-container {
    height: 140px;
    margin-bottom: 1.2rem;
  }

  .pl-title{
    font-size: 18px;
    padding: 1rem 0;
  }

  .about-title{
    font-size: 7rem;
    margin: 1rem 0 0rem 0;
    line-height: 11rem;
  }

  .about-text p{
    font-size: 1.2rem;
    line-height: 2rem;
    text-align: left;
  }

  .product-line .content p{
    text-align: left;
  }

  .product-section-title{
    text-align: left;
  }


 .col-container{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2rem;
  }

  .footer-container{
    flex-direction: row;
    justify-content: space-around;
  }

  .footer-top .footer-social{
    display: flex;
  }
  .footer-copywrite .footer-social{
    display: none;
  }

  .col-1, .col-2 {
    flex: 1;
  }

  .heroImg .title {
    margin: 8rem auto 0 auto;
  }

  .heroImg .script{
    margin-left: 2rem;
    font-size: 14rem;
    line-height: 9.5rem;
  }
  .heroImg .second-line{
    margin-left: 6rem;
    font-size: 10rem;
    line-height: 12rem;
    text-align: left;
  }

  .single-post-content {
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 40px;
  }

  .single-post-content p {
    text-align: left;
  }


  .products-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .product:nth-child(9) { 
    visibility: visible;
    opacity: 1;
    height: auto;
  }
  .product:nth-child(1n+10) { 
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: visibility 0s linear 0.5s, opacity 0.5s linear;
    }
  .product:before {
    content: '';
    /* padding-top: 136%; */
    padding-top: 320px;
  }

  .video-wrapper {
    width: 1000px;
    height: 560px;
    padding-top: 40%;
  }
  .instagram-header img{
    width: 70px;
    height: auto;
  }
  .footer-subscribe-container{
    max-width: 740px;
    margin: 0 auto;
  }

  .subscribe-title .title {
    text-align: left;
    margin-bottom: 0;
  }

  .subscription-form {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .subscription-form .form-group:not(:last-child) {
    width: auto; 
    flex: 1; 
  }

  .subscription-form .form-group {
    margin-right: 10px; 
  }

  .subscription-form .form-group:last-child {
    margin-right: 0; 
    flex: 1;
  }
  .bg_footer_subscribe_TL {
    top: -150px;
    left: -400px;
    max-width: 400px;
}
  /* .bg_footer_subscribe_TL {
    display: none;
    
  } */
  .bg_footer_subscribe_BR {
    bottom: -350px;
    right: -450px;
    max-width: 500px;
  }
  .page-contacts-form .fields-flex{
    width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 20px;
  }

  .page-contacts-form .fields-flex .form-group{
    flex:1;
  }
  
  .page-contacts-form .form-button{
    margin-top: 1rem;
  }

  .footer-top {
      flex-direction: column;
  }

  .resume-upload-form{
    justify-content: flex-end;
    padding-right: 2rem;
  }

}

/* Медиазапрос для больших настольных компьютеров: минимальная ширина 1920px */
/* @media (min-width: 1450px) {
  .container {
      width: 1418px;
  }

  h1{
    text-align: center;
    line-height: 7rem;
    margin: 3rem 0 1rem 0;
    font-size: 7rem;
    word-spacing: 0.5rem;
  }

  section.heroImg {
      padding-top: 38%;
  }

  .heroImg .title {
    margin: 7rem auto 0 auto;
  }

  .heroImg .script{
    margin-left: 2rem;
    font-size: 16rem;
    line-height: 10.5rem;
  }

  .heroImg .second-line{
    margin-left: 6rem;
    font-size: 12rem;
    line-height: 16rem;
    text-align: left;
  }

  .col-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8rem;
}

  h2,
  .title,
  .product-section-title{
    font-size: 3.2rem;
  }


  .product:before {
    content: '';
    display: block;

    padding-top: 460px;
  }

  .products-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(440px, 1fr)); 
    grid-gap: 20px;
  }

  .pl-title{
    font-size: 20px;
    padding: 1rem 0;
  }

  .product { grid-column: span 1; }
  
  .blog-posts-list .post-item {
    width: calc(33.333% - 13.333px); 
  }

  .footer-subscribe-container {
    max-width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
  }

  .bg_footer_subscribe_TL {
    display: block;
    top: -180px;
  }
  .bg_footer_subscribe_BR {
    bottom: -300px;
    right: -370px;
    max-width: 400px;
  }

  .subscription-form {
    flex: .9;
  }

  .resume-upload-form {
    flex-direction: column;
    gap: 0;
}

  .offer-item{
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }


} 
*/

