/*!
Theme Name: Identica New
Theme URI: https://identica.art/
Author: admin
Author URI: https://identica.art/
Description: Описание
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: identica
*/

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

@font-face {
  font-family: 'DinTextPro';
  src: 
       url('fonts/PFDinTextCondPro.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: 
       url('fonts/OpenSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src:
       url('fonts/OpenSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: 
       url('fonts/OpenSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: 
       url('fonts/OpenSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}


:root {
     --bg-white: #FFFFFF;
     --bg-brown: #452A0F;
     --bg-brown-hover: #332210;
     --bg-light-grey: #F5F5F5;

     --text-white: #FFFFFF;
     --text-brown: #452A0F;

     --border-white: #FFFFFF;
     --border-brown: #452A0F;
}

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

body {
  font-family: sans-serif;
  margin: 0;
  background: var(--bg-white);
  color: var(--text-brown);
}

.header {
  height: 94px;
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;    
  background-color: var(--bg-white);
  z-index: 9999;        
  box-shadow: 0 4px 8px 0px rgba(0,0,0,0.1); 
}

.headerWrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.headerWrapper .header-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between; 
  gap: 96px;
  align-items: center;
  margin: 29px 0;
}

.headerWrapper img {
  width: auto;
  max-width: 207px;
  height: auto;
}

.headerWrapper .menu ul {
  list-style: none;
  display: flex;
  flex-direction: row;  
  gap: 73px;
}

.header .menu li a {
  position: relative;
  color: var(--text-brown);
  font-family: 'Open Sans';
  font-weight: 400;
  font-size: 18px;
  white-space: nowrap;
  cursor: pointer;
  padding-left: 32px;
	text-decoration: none;
}

.header .menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url('img/arrow-nav.svg') no-repeat center;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header .menu li a:hover::before {
  opacity: 1;
}

.headerWrapper button {
  padding: 12px 24px;  
  min-width: 150px; 
  color: var(--text-white);
  background-color: var(--bg-brown);
  border: none;
  padding: 16px 32px;
  border-radius: 4px;
  font-family: 'Open Sans';
  font-weight: 400;
  font-size: 18px;
  line-height: 143%;
}

.headerWrapper button:hover {
  background-color: var(--bg-brown-hover);
}

.contentWrapper {
  max-width: 1568px;
  margin: 0 auto;
  box-sizing: border-box;
}

.headerOuter {
  max-width: calc(1568px + 178px * 2);
  margin: 0 auto; 
  padding: 0 178px; 
  box-sizing: border-box;
}

/* slider */

.slider {
  position: relative;
  overflow: hidden;
  margin-top: 94px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-banner .slide {
  flex: 0 0 100%;
  height: 1014px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.slider-banner .slide-content {
  position: absolute;
  bottom: 270px;
  left: 176px;
	padding-left: 15px;
	padding-right: 15px;
}

.slider-banner .slide-content h2 {
  color: var(--text-white);
  font-family: 'DinTextPro';
  font-weight: 200;
  font-size: 92px;
  text-transform: uppercase;
  line-height: 120%;
}

.slider-banner .slide-content .btn{
  border-radius: 4px;
  font-family: 'DinTextPro';
  font-weight: 200;
  font-size: 30px;
  color: var(--text-white);
  display: inline-block;  
  margin-top: 80px;
  padding: 16px 96px;
  border: 2px solid var(--border-white);
  background: transparent;
  text-decoration: none;
  width: 330px;
  text-align: center;
}

.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 5;
}

.slider-nav button {
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  padding: 0;
}

.slider-nav button img {
  width: 100%;
  height: auto;
}

.dots {
  display: flex;
  gap: 10px;
}

.dots span {
  display: block;
  height: 8px;
  width: 8px; 
  background: #D9D9D9;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dots span.active {
  width: 32px; 
  background: var(--bg-white);
}

/* второй слайдер */
.title-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px; 
  margin: 160px 0 140px 0;
  font-size: 50px;
  font-weight: 800;
  font-family: 'Open Sans';
}

.title-lines .line {
  flex-shrink: 0;
  width: 100px; 
  height: 1px; 
  background-color: var(--border-brown);
}

.title-lines .text {
  white-space: nowrap;
}
.slider-collections {
  position: relative;
  overflow: hidden;
  margin: 0px 0 120px 0;
  padding-bottom: 80px; 

}

.slider-collections .slider-track {
  display: flex;
  transition: transform 1s ease;
  align-items: stretch;
}

.slider-collections .slide {
  position: relative; 
  flex: 0 0 calc(25% - 20px); 
  margin-right: 20px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 742px; */
}

.slider-collections .slide:nth-child(5) {
  margin-left: 24px;
}

.slider-collections .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
  object-position: center;
}


.slider-collections .slide-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--bg-white);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.slide-content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;          
  height: calc(1.5em * 3);  
}


.slider-collections .slide-content h3 {
  margin: 0;
  font-size: 20px;
  color: var(--text-brown);
  font-size: 24px;
  font-weight: 600;
  font-family: 'Open Sans';
}

.slider-collections .slide-content p {
  margin: 0;
  color: var(--text-brown);
  font-size: 20px;
  font-weight: 400;
  font-family: 'Open Sans';
  max-width: 342px;
}


.slider-collections .slide-arrow {
  position: absolute;
  width: 76px;
  height: 76px;
  background-color: var(--bg-brown);
  bottom: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
}

.slider-collections .slide-arrow img {
  width: 22px;
  height: 14px;
}


.slider-collections .prev,
.slider-collections .next {
  /* position: absolute;*/
  background: inherit;
  bottom: 0px;
  width: 24px;
  height: 24px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}


.slider-collections .dots {

  bottom: 10px;
  left: 50%;
  display: flex;
  gap: 8px;
}

.slider-collections  .dots span {
    display: block;
    height: 8px;
    width: 8px;
    background: #D9D9D9;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-collections .dots span.active {
  width: 32px; 
  border-radius: 4px;
  background-color: var(--border-brown);
}

.slider-collections.centered .slider-track {
  justify-content: center;
  transform: none !important;
}


/* третий слайдер */

.dino-slider {
  position: relative;
  overflow: hidden;
  margin: 140px 0 auto 0;
  background-color: var(--bg-light-grey);
}

.dino-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  margin-bottom: 0:
}

.dino-slide {
  position: relative;
  flex: 0 0 25%; /* десктоп */
  margin-right: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 610px;
  background-color: var(--bg-white);
}

.dino-image-box {
  position: relative;
  width: 100%;

  overflow: hidden;
}

.dino-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dino-title {
  position: absolute;
  bottom: 24px;
  margin: 0;
  font-size: 32px;
  font-weight: 200;
  color: var(--text-white);
  font-family: 'DinTextPro';
  z-index: 2;
  padding: 4px 10px;
  width: 100%;
  text-align: center;
}

.dino-slider.centered .dino-slider-track {
  justify-content: center;
  transform: none !important;
}


.dino-desc {
  margin: 24px 32px;
  color: var(--text-brown);
  font-size: 26px;
  font-weight: 400;
  font-family: 'DinTextPro', sans-serif;
  max-width: 342px;
  text-align: left;
  display: -webkit-box;      
  -webkit-box-orient: vertical;
  overflow: hidden;          
  -webkit-line-clamp: 3;  
  line-height: 1.5em;   
}

.dino-nav {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.dino-prev,
.dino-next {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s;
}

.dino-prev img,
.dino-next img {
  width: 24px;
  height: 24px;
}

.dino-prev:hover,
.dino-next:hover {
  background: var(--bg-light-grey);
}

.dino-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dino-dots span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #D9D9D9;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dino-dots span.active {
  width: 32px;
  background: var(--border-brown);
}



/* форма обратной связи */

.feedback {
  background: var(--bg-light-grey);
  padding: 120px 50px 160px 50px;
}

.feedback-container {
  max-width: 1564px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background-color: var(--bg-white);
  padding: 48px;
  gap: 48px;
}

.feedback-info {
  flex: 1;
}

.feedback-title {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 24px;
  font-family: 'Open Sans';
  color: var(--text-brown);
  line-height: 146%;
}

.feedback-text {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 24px;
  font-family: 'Open Sans', sans-serif;
  color: var(--text-brown);
  line-height: 146%;
  
}

.feedback-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background-color: var(--bg-light-grey);
  max-width: 493px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Open Sans';
  background-color: var(--text-white);
  font-family: inherit;
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.btn-submit {
  padding: 16px 32px;
  width: 100%;
	margin-top: 16px;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Open Sans';
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background-color: var(--border-brown); 
  color: var(--text-white);
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--bg-brown-hover); 
}

.form-note {
  font-size: 16px;
  line-height: 160%;
  color: var(--text-brown);
  text-align: center;
  font-weight: 400;
  font-family: 'Open Sans';
}

.form-note a {
  color: var(--border-brown);
  text-decoration: underline;
}

/* Отзывы */

.slider-reviews {
  position: relative;
  overflow: hidden;
  margin: 160px 0;
  padding-bottom: 106px;
  flex-wrap: nowrap; 
}

.reviews-track {
  display: flex;
  transition: transform 1s ease;
  gap: 56px;
  padding-left: 0; 
}
.review-slide {
  display: flex;
  flex: 0 0 992px; 
  height: 403px;  
  border: 1px solid #4F34194A; 
  overflow: hidden;
  background-color: var(--bg-white);
}

.review-img img {
  width: 307px;
  height: 100%; 
  object-fit: cover;
}

.review-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1; 
}

.review-subtitle {
  color: var(--text-brown);
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 600;
  font-family: 'Open Sans';
}

.review-name {
  font-size: 34px;
  font-weight: 800;
  font-family: 'Open Sans';
  margin-bottom: 30px;
}

.review-text {
  font-size: 20px;
  font-weight: 400;
  font-family: 'Open Sans';
  line-height: 164%;
  color: var(--text-brown);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

/* Кнопки стрелок */
.review-prev,
.review-next {
  position: absolute;
  bottom: 0;
  width: 40px;
  height: 40px;
  border: none;
  background-color: inherit; 
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.review-prev {
  left: 50%;
  transform: translateX(-74px);
}

.review-next {
  left: 50%;
  transform: translateX(40px);
}

.review-prev img,
.review-next img {
  width: 24px;
  height: 24px;
}

/* Точки */
.review-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.review-dots span {
    display: block;
    height: 8px;
    width: 8px;
    background: #D9D9D9;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.review-dots span.active {
  width: 32px;
  background-color: var(--border-brown);
  border-radius: 4px;
}

/*блок на гридах*/

.info-grid {
  background: var(--bg-light-grey);
  padding: 80px 0;
}

.info-grid .container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
}

.info-grid__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; 
  justify-content: center;
}

.info-grid__item {
  background: var(--bg-white);
  width: auto;
  height: 307px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-align: center;
}

.info-grid__item:nth-child(9) {
  background-color: var(--bg-brown);
}

.info-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-grid__item.text {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 48px;
}

.info-grid__item:nth-child(9).text span, .info-grid__item:nth-child(9).text p {
  color: var(--text-white);
}

.info-grid__item.text span {
  font-weight: 600;
  font-family: 'Open Sans';
  font-size: 24px;
  margin-bottom: 8px;
  line-height: 160%;
  display: block;
  color: var(--text-brown);
}

.info-grid__item.text p {
  font-size: 20px;
  line-height: 164%;
  color: var(--text-brown);
}

.info-grid__arrow {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 48px;
  height: 48px;
  background-color: var(--bg-white); 
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.info-grid__arrow img {
  width: 24px;
  height: 24px;
}

.info-grid__arrow:hover {
  background-color: var(--bg-light-grey);
}


footer {
  height: 93px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-family: 'DinTextPro';
  font-size: 20px;
  color: var(--text-brown);
  line-height: 143%;
}

@media (min-width: 1200px) and (max-width: 1920px) {
  .headerWrapper .header-menu {
    gap: 16px;

  }
  .headerWrapper .menu ul {
    gap: 43px;
  }

  .headerOuter {
    padding: 0px 68px;
  }
}


@media (max-width: 1600px) {

  .headerWrapper .menu ul {
    gap: 56px;
  }

  .slider-banner .slide-content h2 {
    font-size: 80px;
  }

  .slider-banner .slide {
    height: 894px;
  }

  .title-lines {
    margin: 120px 0 104px 0;
  }

  .feedback {
    padding: 120px 50px;
  }

  .slider-reviews {
    margin: 120px 0;
  }
  
  .info-grid .container {
    padding: 0 40px;
  }
}

@media (max-width: 1200px) {

  .headerOuter {
    padding: 0 20px;
  }
  
  .headerWrapper .header-menu {
    gap: 43px;
  }

  .headerWrapper .menu ul {
    gap: 36px;

  }

  .header .menu li a::before {
    display: none;
  }


  .headerWrapper button {
    width: 190px;
    padding: 12px 14px;
  }

  .title-lines .text {
    white-space: wrap; 
    text-align: center;
  }

  .info-grid__wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

    .info-grid .container {
    padding: 0 20px;
  }
}

@media (max-width: 1000px) {
  .headerWrapper .header-menu {
    gap: 26px;
  }

  .headerWrapper img {
    max-width: 177px;
  }

  .headerWrapper .menu ul {
   gap: 15px;
  }

  .header .menu li a {
    font-size: 13px;
  }

  .slider-banner .slide-content {
    bottom: 170px;
    left: 56px;
  }

  .slider-banner .slide-content h2 {
    font-size: 60px;
  }

  .slider-banner .slide-content .btn {
    padding: 16px 36px;
    width: 250px;
  }
}

@media (min-width: 768px) {
  .burger-btn,
  .mobile-close,
  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {


  .header {
    height: 56px;
    box-shadow: none;
  }

  .headerOuter {
    padding: 0 16px;
  }

  .menu {
    display: none;
  }

  .headerWrapper button {
    display: none;
  }

  .headerWrapper {
    justify-content: space-between;
  }

  .headerWrapper img {
    width: 129px;
    height: auto;
  }

  .headerWrapper .header-menu {
    margin: 16px 0;
  }

  .title-lines {
    margin: 48px auto;
    font-size: 22px;
  }

  .title-lines .line {
    display: none;
  }

  .prev, .next,
  .slider-collections .next, .slider-collections .prev,
  .dino-prev, .dino-next, 
  .review-prev, .review-next   {
    display: none;
  }

  .slider {
    margin: 56px 0;
  }

  .slider-banner .slide {
    height: 599px;
    background-size: cover;
    background-position: 70% 30%;
  }

  .slider-banner .slide-content {
    bottom: 0;
    left: 0;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 30%;
  }

  .slider-banner .slide-content h2 {
    font-size: 40px;
    letter-spacing: 1px;
    line-height: 136%;
  }

  .slider-banner .slide-content .btn {
    margin-top: 24px;
    padding: 9px 18px;
    width: 260px;
    font-size: 20px;
  }

  .slider-collections .slide-content {
    left: 10%;
    right: 10%;
  }
 
  .slider-collections .slide-content h3 {
    font-size: 16px;
  }

  .slider-collections .slide-content p {
    font-size: 14px;
  }

  .slider-collections .slide-arrow {
    width: 47px;
    height: 47px;
  }

 
  
  .dino-desc {
    margin: 14px 18px;
    font-size: 22px;
    font-weight: 400;
  }

  .dino-title {
    font-size: 24px;
  }

  .dino-slider {
    margin: 0 auto;
  }

  .dino-slide {
    height: auto;
  }

  .dino-slider-track {
    margin-bottom: 32px;
  }

  .feedback {
    padding: 20px;
  }

  .feedback-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
  }

  .feedback-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .feedback-form {
    max-width: 100%;
    gap: 16px;
  }

  .feedback-text, .form-group input, .form-group textarea, .form-note, .btn-submit {
    font-size: 18px;
  }

	.btn-submit {
		margin-top: 0;
	}

.slider-reviews {
  position: relative;
  overflow: hidden;
  margin: 40px 0;
  padding: 0 15px;
}

.reviews-track {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  transition: transform 0.5s ease;
}

.review-slide {
  flex: 0 0 100%;
  margin: 40px auto;
  height: 386px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  padding: 24px 0;
}

.review-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}

.review-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-content {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-subtitle {
  font-size: 14px;
  margin: 16px 0 4px;
}

.review-name {
  font-size: 18px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 18px;
  line-height: 1.4;
  max-width: 380px;
  text-align: center;
}

.slider-controls {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  box-sizing: border-box;
  z-index: 10;
}

.review-prev,
.review-next {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.review-prev img,
.review-next img {
  width: 24px;
  height: 24px;
}

.review-prev:hover,
.review-next:hover {
  background: var(--bg-light-grey);
}

.review-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.review-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dots span.active {
  width: 32px;
  background: var(--border-brown);
}

  .slider-3 {
    bottom: 20px;
  }


  .info-grid {
    padding: 40px 0;
  }

  .info-grid .container {
    padding: 0 20px;
  }

  .info-grid__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-grid__item {
    width: 100%;
    max-width: 100%;
    padding: 20px;

  }

  .info-grid__item.text {
    padding: 24px;
    align-items: flex-start;
    text-align: left;
  }

  .info-grid__item.text span {
    font-size: 22px;
  }

  .info-grid__item.text p {
    font-size: 18px;
    
  }

  .info-grid__item.img {
    padding: 0;
  }

  .burger-btn {
    display: block;
    position: fixed;
    top: 15px;
    right: 16px;
    z-index: 10000;
    background: none;
    border: none;
    cursor: pointer;
  }

  .mobile-close {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 10001;
    background: none;
    border: none;
    cursor: pointer;
  }

  .mobile-menu {
    position: fixed;
    top: 56px;
    right: -100%;    
    width: 100%;         
    height: 100%;
    background-color: var(--bg-white);
    z-index: 9999;
    transition: right 1s ease; 
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  .mobile-menu.open {
    right: 0;
    top: 56px;
  }
.mobile-menu-banner {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.mobile-menu-banner img {
  display: block;
  width: 100%;
  height: 241px;
  object-fit: cover;
}

.mobile-menu-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); 
}

.mobile-menu-banner .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-white);
  text-align: center;
  font-family: 'DinTextPro';
  font-weight: 200;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 160%;
}

  .mobile-nav ul {
    list-style: none;
    padding: 32px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

	.mobile-nav li  {
		display: inline-flex;
		gap: 5px;
	}
	
  .mobile-nav li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 9px;
    font-family: 'Open Sans';
    font-size: 18px;
    color: var(--text-brown);
	  text-decoration: none;
  }

  .mobile-nav li img {
    width: 24px;
    height: 24px;
  }

  .btn-feedback {
    margin: 16px auto;
    width: calc(100% - 64*2px);
    padding: 16px;
    border: none;
    border-radius: 4px;
    background-color: var(--bg-brown);
    color: var(--text-white);
    cursor: pointer;
    position: absolute;
    bottom: 70px;
    left: 64px;
    right: 64px;
    font-family: 'Open Sans';
    font-size: 14px;
    line-height: 165%;
    font-weight: 400;
  }

  footer {
    height: 55px;
    letter-spacing: 2px;
  }

}

/* Модальное окно */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
	
	.dino-slide img {
		    width: auto;
    height: 250px;
    object-fit: contain;
    object-position: center;
	}
	
	
	.dino-nav {
 margin: 0 auto 16px auto;
	}
	
  .dino-prev,
  .dino-next {
    width: 32px;
    height: 32px;
  }

  .dino-prev img,
  .dino-next img {
    width: 20px;
    height: 20px;
  }

  .dino-dots span {
    width: 6px;
    height: 6px;
  }

  .dino-dots span.active {
    width: 20px;
  }
	
	.slider-reviews-nav {
		bottom: 0;
	}
	
 .review-prev,
  .review-next {
    width: 32px;
    height: 32px;
  }

  .review-prev img,
  .review-next img {
   display: none;
  }


}