/* 
 02.03.2025 Базовые стили СТАРТ
 Сбрасывают или преобразуют дефольное браузерное поведение.
класс visually-hidden на случай, если нужно скрыть какой-то элемент, но оставить доступным для скринридера. 
*/

*,
*::after,
*::before {
  box-sizing: border-box;
}

/*Футер к низу*/
html{
  height: 100%;
}

body {
  margin: 0;
  font-family: Montserrat, sans-serif;
  min-inline-size: 320px;

  /*Футер к низу*/
  display:flex;
  flex-direction: column;
  min-height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
button,
blockquote,
fieldset {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

button,
input {
  color: currentColor;
  font-family: inherit;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

.visually-hidden {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
/* 02.03.2025 Базовые стили СТОП*/
.section{
  padding: 20px 4%;
}

.header {
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-font, #031700);
}

.header__log-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap:20px;
}

.header__name-wrap{
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;

}

.header__name{
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  font-size: 21px;
  text-transform: none;
  line-height: 150%;
  color: #fff;
  text-decoration: none;
}

.header_description{
  font-size: 16px;
  line-height: 150%;
  color: rgb(182, 234, 10);
  font-weight: 400;
  font-family: Montserrat, sans-serif;
}

/*Гамбургер СТАРТ*/
.header-nav-btn {
  display: none;
  position: absolute;
  z-index: 1;
  inset: 10px 10px auto auto;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;

  width: 70px;
  height: 70px;
  border: none;

  padding: 5px 10px;
  cursor: pointer;

  background-color: rgba( 47, 89, 0, 1 );
  color: rgba( 255, 255, 255, 1);
}

.header-nav-btn__pancakes{
  width: 70%;
  height: 3px;
  background-color: rgba( 255, 255, 255, 1 );

  transition-property: all;
  transition-duration: 200ms;
  transition-delay: 0ms;
  transition-timing-function: ease;
}

.header-nav-btn.header-nav-btn_active .header-nav-btn__pancakes:nth-child(1){
  transform: translateY(10px) rotate(45deg);
}
.header-nav-btn.header-nav-btn_active .header-nav-btn__pancakes:nth-child(2){
  opacity: 0;
}
.header-nav-btn.header-nav-btn_active .header-nav-btn__pancakes:nth-child(3){
  transform: translateY(-15.5px) rotate(-45deg);
}

/*Гамбургер СТОП*/



/*Главное Меню СТАРТ*/

button:focus-visible,
a:focus-visible {
  outline: 2px solid;
  outline-offset: -3px;
}


.menu {
  display: flex;
  min-width: max-content;
  background: var(--bg-font, #031700);
  color: var( --txt-light, #fff);
}

.menu-submenu {
  background: var(--green-color);
}

.menu__btn,
.menu__link {
  display: flex;
  width: 100%;
  gap: .5em;
  align-items: center;
  padding: .75rem 0.85rem;

  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;

  color: var( --txt-light, #fff);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: background-color 0.2s linear;
}

.menu__link:hover,
.menu__btn:hover,
.menu__btn[aria-expanded="true"] {
    background-color: var(--bg-font, #031700);
    color: var(--green-color,#98c608);
}

.menu-submenu .menu__link{
  font-size: 17px;
  font-weight: 500;
  font-family: Comfortaa, cursive;
  color: rgba(34, 34, 34, 0.7);
}

.menu-submenu .menu__link:hover,
.menu-submenu .menu__btn:hover,
.menu-submenu .menu__btn[aria-expanded="true"] {
  background-color: #98C608;
  color: rgba(34, 34, 34, 1);
}

.menu-submenu .menu__link:focus-visible,
.menu-submenu .menu__btn:focus-visible {
  outline-width: 2px;
  outline-offset: -3px;
  outline-style: solid;
  outline-color: #000000;
}

.menu__btn-icon {
  color: inherit;
  transition: transform .1s linear;
}

.menu-submenu .menu__btn-icon {
  transform: rotate(-90deg);
}

.menu__btn[aria-expanded="true"] .menu__btn-icon {
  transform: rotate(180deg);
}

.menu-submenu .menu__btn[aria-expanded="true"] .menu__btn-icon {
  transform: rotate(90deg);
}

.menu__item {
  position: relative;
}

.menu__link {
  text-decoration: none;
}

a[aria-current="page"] {
  font-weight: 500;
  font-size: 17px;
  color: #000000;
}

/* Вложенное меню */
.menu .menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-inline-start: 3rem;
}

/* Первый уровень вложенности */
.enhanced .menu .menu {
  position: absolute;
  top: 182%;
  left: 0;
  padding-inline-start: 0;
  z-index: 5;
}

.enhanced .menu .menu__item:last-of-type > .menu{
  left: -264px;
}

/* Второй уровень вложенности */
.enhanced .menu .menu .menu {
  top: 0;
  left: 104%;
}

.menu[hidden] {
  display: none;
}

@media all and (max-width: 992px) {
    body {
      /* padding: 30px 0; */
    }

    .header {
      padding: 0;
    }

    .site-nav {
      width: 100%;
    }

    .menu {
      display: flex;
      flex-direction: column;
      width: 100%;
      gap: 16px;
    }

    .menu__btn {
      width: 100%;
      justify-content: space-between;
    }

    .menu-submenu .menu__btn-icon {
      transform: initial;
    }

    .menu-submenu .menu__btn[aria-expanded="true"] .menu__btn-icon {
      transform: rotate(180deg);
    }

    /* Первый уровень вложенности */
    .enhanced .menu .menu,
    .enhanced .menu .menu .menu {
      position: relative;
      top: 0;
      left: 0;
      padding-inline-start: 1em;
      padding-inline-end: 1em;
    }

   
  }
/*Главное Меню СТОП*/

.addres__link{
  display:flex;
  justify-content: end;
  align-items: center;
  gap:1rem;
  text-decoration: none;
}

.addres__link-text{
  display: inline-block;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 100%;
  font-family: Montserrat, sans-serif;
  font-style: normal;
}

.addres__link-text::after{
  content: "";
  display: block;
  width: 0%;
  height: 1.5px;
  margin-top: 2px;
  background-color: rgba( 255, 255, 255, 0.7);
  transition: width 0.5s;
}

.addres__link-text:hover::after{
  width: 100%;
}


/*Футер к низу*/
.main{
  flex-grow: 1;
}


/*слайдер main-slider СТАРТ*/

.main-slider{
  background-color: #98c608;
}

/* .itc-slider-items {
  counter-reset: slide;
}


.itc-slider-item {
  flex: 0 0 100%;
  max-width: 100%;
  counter-increment: slide;
} */


/*doka slider start*/
.button-prev svg, .button-next svg{
  fill: rgba(255, 255, 255, 0.6);
  stroke: rgba(255, 255, 255, 0.6);
}

.slide-img{
  height: 85vh;
}

.controls{
  z-index: 1;
}

/*doka slider end*/

.overlay{
  position: absolute;
  inset: 0;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 30px;
}

.cover-title{
  display: block;
  /* position: relative; */
  width: 100%;

  font-size: 5vw;
  line-height: 4vw;
  font-family: Oswald, sans-serif;
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
  text-transform: none;
}

.text-title::first-letter{
  text-transform: uppercase;
}

.text-title{
  display: block;
  padding-left: 4%;
}


.background-title{
  display: inline-block;
  background-color: rgba(3, 23, 0, 1);  
  padding: 0 4% ;

  font-size: 40px;
  font-family: Montserrat, sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
}

.cover-button{
  margin-left: 4%;
  padding: 25px 40px;
  border: none;
  border-radius: 150px;
  background-color: rgba(182, 234, 10, 1);
  color: rgba(34, 34, 34, 1);
  font-size: 19px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
}


.cover-button::first-letter{
  text-transform: uppercase;
}

.cover-button:hover{
  box-shadow: 0px 0px 25px 0px rgba(182, 234, 10, 0.4);
}
/*слайдер main-slider СТОП*/







/*why-are-we Почему мы СТАРТ*/
.why-are-we{
  padding-top: 8%;
  padding-bottom: 4%;
  position: relative;
  background-image: linear-gradient( rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%), none, none, url(../img/kust10.png), url(../img/kust9.png);
  background-repeat: no-repeat;
  background-position: left 0px top 0px, left 0px top 0px, left 0px top 0px, right -36px top 122px, left -37px top 70px;
  background-size: auto, auto, auto, 324.5px auto, 262.8px auto;
  background-attachment: scroll, scroll, scroll, scroll, scroll;
}

.why-are-we__content{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.why-are-we__proff{
  width: 30%;
  margin-right: 40px;
}

.why-are-we__proff-content-elem{
  margin: 20px 0;
}

.why-are-we__title {
  font-size: 5vw;
  line-height: 6vw;
  font-weight: 700;
  font-family: Oswald, sans-serif;
  margin-bottom: 40px;
}

.why-are-we__title:first-letter{
  text-transform: uppercase;
}


.why-are-we__number{
  font-family: inherit;
  font-size: 4vw;
  line-height: 5vw;
  font-weight: 800;
  display: inline-block;
  position: relative;
  z-index: 0;
}

.why-are-we__number::before{
  content:"";
  width: 40px;
  height: 40px;
  background-color: rgb(182, 234, 10);
  display: inline-block;
  position: absolute;
  z-index: -1;
  inset: 50% 0;
}


.why-are-we__text{
  font-family: Oswald, sans-serif;
  font-size: 1.7vw;
  line-height: 2vw;
  font-weight: 500;
  position: relative;
}

.why-are-we__text::first-letter{
  text-transform: uppercase;
}

.why-are-we__advantages{
  display: flex;
  flex-wrap: wrap;
  width: 70%;
  gap: 50px;
}

.advantage{
  position: relative;
  display: flex;
  align-items: center;

  flex-grow:1;
  flex-shrink:1;

  max-width: 100%;
  width: 44%;
  height: auto;

  border: 2px solid rgba(47, 89, 0, 0.1);
  background-color: rgb(255, 255, 255);
  /* margin: 25px 40px 0 25px; */
  padding: 40px;
}

.advantage::before{
  position:absolute;
  inset: -25% 8%;
  display: block;
  content: "";
  width: 100px;
  height: 100px;
  position:absolute;
  background-color: rgba(255, 255, 255, 0.7);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; 

}

.advantage_panoramic::before{
  background-image: url(../img/panoramic-view.png);
}

.advantage_ecology::before{
  background-image: url(../img/ecology.png);
}

.advantage_warranty::before{
  background-image: url(../img/warranty_1.png);
}

.advantage_landscape::before{
  background-image: url(../img/landscape_1.png);
}

.advantage__text{
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: 1.7vw;
  line-height: 2vw;
  color: rgb(34, 34, 34);
  margin: 30px 0 20px;
}

.advantage__text::first-letter{
  text-transform: uppercase;
}

/*why-are-we Почему мы СТОП*/




/*about  О нас СТАРТ*/

.about{
  padding-top: 8%;
  padding-bottom: 4%;
  background-image: none, linear-gradient(to right, rgba( 47, 89, 0, 1 ) 50%, rgba( 255, 255, 255, 0 ) 50%), url("../img/about_fon.jpg");
  background-repeat: no-repeat;
  background-position: left calc(-204px + 50%) bottom 61px, left 0px top 0px, center center;
  background-size: 313.5px auto, auto, cover;
  background-attachment: scroll;
}

.about-title-wrapper{
  background-color: rgba( 182,234, 10, 1);
  width: 40%;
  margin-left: -5%;
  padding-left: 5%;
  padding-right: 4%;
  margin-bottom: 25px;
  padding-top: 1%;
  padding-bottom: 1%;
}

.about-title{
  font-family: Oswald, sans-serif;
  font-size: 5vw;
    line-height: 5.3vw;
}

.about-title::first-letter{
  text-transform: uppercase;
}

.about-content{
  width: 50%;
  padding-right: 2%;
  display: flex;
  flex-wrap:wrap;
  gap: 20px;
}

.about-content__title{
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: 2.5vw;
  line-height: 3vw;
  color: rgba( 255, 255, 255, 1 );
  margin-bottom: 10px;
}

.about-content__title::first-letter{
  text-transform: uppercase;
}

.about-content__text{
  font-size: 17px;
  line-height: 150%;
  color: rgba( 255, 255, 255, 0.8);
}


.about-content__link{
  padding: 20px 40px;
  border: 2px solid rgba( 255, 255, 255, 1);
  border-radius: 50px;

  font-weight: 500;
  color: rgba( 255, 255, 255, 0.8);

  cursor: pointer;

  text-decoration: none;

  transition-property: all;
  transition-duration: 400ms;
  transition-delay: 0ms;
  transition-timing-function: ease;
}


.about-content__link:hover{
    border-color: rgba( 182, 234, 10, 1);
    box-shadow: 0px 0px 25px 0px rgba( 182, 234, 10, 0.15 );
}

/*about  О нас СТОП*/


/*main-contacts Контакты на главной СТАРТ*/


.main-contacts{
  background-image: linear-gradient(rgba( 0, 0, 0, 0.6) 0%, rgba( 0, 0, 0, 0.6) 100%), url(../img/otzyv2.png);
  background-repeat: no-repeat;
  background-position: left 0px top 0px, center center;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  /* background-color: rgba( 47, 89, 0, 0.9); */
  background-color: rgba( 255, 255, 255, 1);
  padding-top:5%;
  padding-bottom: 9%;
}

.main-contacts-wrap{
  display: flex;
}

.main-contacts-contact{
  flex-basis: 50%;
  flex-grow: 1;
  display: flex;
  background-color: transparent;
}

.main-contacts-contact-wrapinner{
  background-color: rgba( 255, 255, 255, 1);
  margin: auto 0 auto auto;
  padding: 40px;
}

.main-contacts-title{
  font-family: Oswald, sans-serif;
  font-weight: 700;
  /* font-size: 3vw;
  line-height: 4vw; */

  font-size: clamp(1.5rem, 0.96rem + 2.7vi, 4.2rem);
  line-height: clamp(1.8rem, 1.2rem + 3vi, 4.8rem);
  margin-bottom: 40px;
}

.main-contacts-title::first-letter{
  text-transform: uppercase;
}

.main-contacts-address__links-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 25px;
}

.main-contacts-address__links-item{
  flex-basis: 50%;
}

.main-contacts-address__links-wrap{
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap:10px;
}

.main-contacts-address__links-svg{
  width: 20px;
  height: 20px;
  fill: rgba(34, 34, 34, 0.5);
}

.main-contacts-address__links-svg_mail{
  width: 30px;
  height: 30px;
}

.main-contacts-address__links-title{
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: rgba( 34, 34, 34, 0.7);
  margin-bottom: 5px;
}

.main-contacts-address__links-title::first-letter{
  text-transform: uppercase;
}


.main-contacts-address__links-text{
  font-size: 14px;
  font-style: normal;
  color: rgba( 34, 34, 34, 1);
  font-weight: 500;
}

.main-contacts-address__links-text::first-letter{
  text-transform: uppercase;
}

.main-contacts-address__links-link{
  display: block;
  color: rgba(34, 34, 34, 1);
  font-weight: 500;
  font-size: 14px;
  font-style: normal;
  text-decoration: none;
  transition: color 0.5s;
}

.main-contacts-address__links-link::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  margin-top: 1px;
  background-color: rgba(34, 34, 34, 0.5);
  
  transition: width 0.5s;
}

.main-contacts-address__links-link:hover::after{
  width: 100%;
}

.main-contacts-address__links-social-link{
  width: 30px;
  height: 30px;
  fill: rgba(34, 34, 34, 0.7);
  transition: fill 0.5s;
}

.main-contacts-address__links-social-link:last-of-type{
  margin-left: 30px;
}

.main-contacts-address__links-social-link:hover{
  /* fill: rgba( 47, 89, 0, 1); */
  fill: rgba(3, 23, 0, 1);
}

.main-contacts-address__links-social-link:active{
  /* fill: rgba( 47, 89, 0, 1); */
  fill: rgba(3, 23, 0, 1);
}


.main-contacts-address__links-social-link-svg{
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.main-contacts-feedback{
  flex-basis: 50%;
  flex-grow: 1;
  padding: 40px;
  background-color: rgba( 47, 89, 0, 1);
}

.main-contacts-feedback-title{
  font-family: Oswald, sans-serif;
  color: rgba( 255, 255, 255, 1 );
  font-weight: 700;
  /* font-size: 3.5vw;
  line-height: 4vw; */
  font-size: clamp(1.5rem, 0.96rem + 2.7vi, 4.2rem);
  line-height: clamp(1.8rem, 1.2rem + 3vi, 4.8rem);
  text-align: center;
  margin-bottom: 10px;
}

.main-contacts-feedback-title::first-letter{
  text-transform: uppercase;
}

.main-contacts-feedback-text{
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.feedback-form{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feedback-form.feedback-form_contact{
  gap: 40px; 
  /* padding: 0 80px; */
}

.feedback-form__fieldset{
  border: none;
  display: flex;
  justify-content: center;
  column-gap: 40px;
}

.feedback-form__fieldset.feedback-form_contact__fieldset{
  flex-direction: column;
  gap: 40px;
}

.feedback-form.feedback-form_contact > .feedback-form__fieldset:first-of-type{
  width: 100%;
  justify-content: space-between;
  gap:20px;
}

.feedback-form.feedback-form_contact > .feedback-form__fieldset:first-of-type > .feedback-form__label{
  width:100%;
}

.feedback-form.feedback-form_contact .feedback-form__textfield{
  text-align: left;
  width: 100%;
}


.feedback-form__label{
  display: inline-block;
  width: fit-content;
  vertical-align: middle;
  width: auto;
}



.feedback-form__textfield{
  appearance: none;
  font-family: inherit;
  font-size: 17px;
  font-weight: 400;
  color: rgba(34, 34, 34, 1);
  border: none;
  padding: 15px;
  text-align: center;
  outline: none;
}


.feedback-form__textfield:hover{
  cursor: text;
}


.feedback-form__fieldset:last-of-type > .feedback-form__label{
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 45px;
}

.feedback-form__wrap{
  flex-grow: 1;
}

.feedback-form__textarea{
  width: 100%;
  resize: vertical;
  font-size: 18px;
  font-weight: 400;
  color: rgba(34, 34, 34, 1);
  padding: 15px;
}

.feedback-form__textarea:focus{
  outline: none;
}

.feedback-form__pseudo-checkbox{
  width: 19px;
  height: 19px;
  border: 1px solid #fff;
  background-color: rgba(3, 23, 0, 1);
  flex-shrink: 0;
  cursor: pointer;
}

.feedback-form__pseudo-checkbox:active {
  border: 1px solid rgba(3, 23, 0, 1);
  background-color: #fff;
}

input[type='checkbox'].feedback-form__checkbox:active + .feedback-form__pseudo-checkbox:before {
  display: inline-block;
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid #1b1919;
  background-color: transparent;
  margin: 1px;
}

input[type='checkbox'].feedback-form__checkbox:checked + .feedback-form__pseudo-checkbox:before {
  display: inline-block;
  content: "";
  width: 9px;
  height: 9px;
  border: 1.5px solid rgba(182, 234, 10, 1);
  background-color: currentColor;
  margin: 4px;
}

.feedback-form__label-text{
  font-size: 15px;
  color: rgba(255, 255, 255, 1);
  font-family: Comfortaa, cursive;
  line-height: 150%;
}

.feedback-form__submit-button{
  padding: 22px 40px;
  background-color: rgba(182, 234, 10, 1);
  border-radius: 250px;
  border: none;
  cursor: pointer;
  outline: none;

  font-family: inherit;
  color: rgba( 34, 34, 34, 1);
  font-weight: 600;
  font-size: 18px;

  transition-property: all;
  transition-duration: 400ms;
  transition-delay: 0ms;
  transition-timing-function: ease;
}


.feedback-form__submit-button::first-letter{
  text-transform: uppercase;
}

.feedback-form__submit-button:hover{
  box-shadow: 0px 0px 25px 0px rgba( 182, 234, 10, 0.4);
  background-color: rgba( 182, 234, 10, 1);
}



.take-off{
  border: none;
  background-color: transparent;
  transition: border 0.3s ease;
  cursor: pointer;
  width: 16px;
  margin-top: 5%;
}


.take-off__arrow{
  fill: rgba( 255, 255, 255, 0.6);
  stroke: rgba( 255, 255, 255, 0.6);
  width: 100%;
  object-fit: cover;
  object-position: center;

  transition: fill 0.3s linear, stroke 0.3s linear, box-shadow 0.3s linear;

}

.take-off__arrow:hover {
  fill: rgba(182, 234, 10, 1);
  stroke: rgba(182, 234, 10, 1);
  /* box-shadow: 0px 0px 15px 0px rgba( 182, 234, 10, 0.15 ); */

}

.error-message{
  background-color: rgb(247, 117, 117);
  /* background-color: rgba(211, 16, 16, 0.7); */
  border: 1px solid rgba(247, 117, 117, 0.7);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 15px;
  margin-top: 3px;
  font-size: 12px;

}

/*main-contacts Контакты на главной СТОП*/



/*Footer СТАРТ*/
.footer{
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding: 2% 4%;
  background-color: #2f5900;

  color: #fff;
  font-size: 17px;
}
/*Footer СТОП*/

/*Пагинатор СТАРТ*/
.projec-pagination{
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  border-radius: .25rem;
  
}

.project-page-item .page-link{
  position: relative;
  display: block;
  padding: .5rem .75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #2f5900;
  background-color: #fff;
  border: 1px solid #dee2e6;
  text-decoration: none;
}

.project-page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.project-page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #2f5900;;
  border-color: #2f5900;;
}


/*Пагинатор СТОП*/

/* Основные стили на страницах СТАРТ*/

.category-post__content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 40px;

}

.category-post__content--img-reverse{
  flex-direction: row-reverse;
}

.category-post__text{
  flex: 0 1 70%;
}

.category-post__img-wrap{
  flex: 0 1 30%;             /*flex-grow:0 flex-shrink:1 (разрешаю сжатие при нехватке места   flex-basis: 30%)*/
  overflow: hidden;
}

.category-post__title{
  font-family: Oswald, sans-serif;
  color: rgba( 34, 34, 34, 1);
  text-transform: uppercase;
  /* font-size: 1vw;
  line-height: 2vw; */
  font-size: clamp(1.075rem, 1.05rem + 0.125vi, 1.2rem);
  line-height: clamp(1.775rem, 1.65rem + 0.625vi, 2.4rem);
  margin: 20px 0;
}

.category-post__img{
  max-width: 100%;         /*не шире родителя*/
  max-height: 100%;        /*не выше родителя*/
  width: auto;             /*сохраняет пропорции по ширине*/
  height: auto;            /*сохраняет пропорции по высоте*/
  object-fit: cover;       /*сохраняте пропроции*/
  object-position: center; /*центритует изобр*/
  display: block;
}


 .page-title{
  font-family: Oswald, sans-serif;
  color: rgba( 34, 34, 34, 1);
  text-transform: uppercase;
  /* font-size: 3vw;
  line-height: 4vw; */
  font-size: clamp(1.25rem, 0.78rem + 2.35vi, 3.6rem);
  line-height: clamp(1.425rem, 0.75rem + 3.375vi, 4.8rem);
  margin: 20px 0;
}

.category-post__p, .page-text{
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 400;
  /* font-size: 19px;
  line-height: 150%; */
  font-size: clamp(0.938rem, 0.9rem + 0.188vi, 1.125rem);
  line-height: clamp(1.875rem, 1.8rem + 0.375vi, 2.25rem);
  text-align: justify;
  margin-bottom: 10px;
}

.category-post__list{
  list-style: disc;
  padding-left: 15px;
}


.page-text_about-page-text{
  margin-bottom: 40px;
}

.page-text_about-page-list-text{
  font-size: 15px;
  margin-bottom: 40px;
}

.about-page__list{
  list-style-type: disc;
  margin-left: 7px;
}

.about-page__list-accent{
  font-weight: bold;
  font-style: italic;
}

.page-image{
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  max-height: 40vh;
}

.page-image_margin{
  margin: 20px 0;
}


.links-articles-category{
  margin-bottom: 40px;
}

.links-articles-category__link{
  display: block;
  text-decoration: underline;
  font-size: 18px;
  font-weight: 400;
  color: rgba( 34, 34, 34, 1);
  margin-bottom: 10px;
  text-transform: lowercase;
}

.links-articles-category__link::first-letter{
  display: inline-block;
  background-color: var(--bg-font, #031700);
  text-transform: uppercase;
  font-weight: bold;
  color: rgb(182, 234, 10);
  padding-left: 4px;
  padding-right: 4px;
  margin-right: 3px;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
}


/* Основные стили на страницах СТОП*/

/*14.02.2025 Портфолио СТАРТ*/
.portfolio{
  padding: 0 4%;
}

.portfolio-title{
  margin: 30px 0;
}

.portfolio-list{
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  margin: 0 0 50px;
}

.portfolio-list__elem{
  flex: 0 1 30%;
}

.portfolio-list__link{
  text-decoration: none;
  outline: none;
}

.portfolio-card__image-container{
  overflow: hidden;      /* Скрывает всё, что выходит за границы */
  position: relative;     /* Нужна для корректной работы дочерних элементов */
  width: 100%;          
  border-radius: 5px;   
}


.portfolio-card__image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.portfolio-card__image-container:hover::after {
  opacity: 1;
}


.portfolio-card__image{
  display: block;        /* Убираем лишние отступы */
  width: 100%;         /* Растягиваем на всю ширину контейнера */
  height: auto;        /* Сохраняем пропорции */
  object-fit: cover; /* Заполняем контейнер, обрезая лишнее */
  object-position: center; /* Центрируем изображение */
  transition: transform 0.3s ease-in-out;  /* Плавный переход */
  transform-origin: center;  /* Точка масштабирования — центр */
}

/* Эффект при наведении */
.portfolio-card__image-container:hover img {
  transform: scale(1.1);  /* Увеличиваем на 10 % */
}

.portfolio-card__title{

  margin-top: 15px;
}

.portfolio-card__title::first-letter{
  text-transform: uppercase;
}




/*29.03.2026 Для галереи портфолио СТАРТ*/
.cssSlider {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
}
.cssSlider .slides {
	overflow: hidden;
	overflow: hidden;
	width: 100%;
	height: 90vmin;
	margin: 0;
	padding: 0;
	list-style: none;
}
.cssSlider .slides > li {
	width: 100%;
	height: 90vmin;
	position: absolute;
	z-index: 1;
	overflow: hidden;
}
.cssSlider .slides > li > img {
	width: 100%;
	height: 100%;
	/* height: auto; */
}
/* 
.cssSlider .slides > li:first-child:not(:target) {
	z-index: 1;
	-webkit-transform: translateY(0%);
	        transform: translateY(0%);
} */

.cssSlider .thumbnails {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap:30px;
  margin: 30px 0;
}

.cssSlider .thumbnails > li > a {
	display: block;
}
.cssSlider .thumbnails > li > a > img {
	width: 100%;
	height: auto;
}

.cssSlider .slides li:target {
	z-index: 3;
	-webkit-animation: slide .9s 1;
}
.cssSlider .slides li:not(:target) {
	-webkit-animation: hidden .9s 1;
}
@-webkit-keyframes slide {
	0% {
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
	}
	100% {
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
	}
}
@keyframes slide {
	0% {
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
	}
	100% {
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
	}
}
@-webkit-keyframes hidden {
	0% {
		z-index: 2;
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
	}
	100% {
		z-index: 2;
		-webkit-transform: translateX(100%);
		        transform: translateX(100%);
	}
}
@keyframes hidden {
	0% {
		z-index: 2;
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
	}
	100% {
		z-index: 2;
		-webkit-transform: translateX(100%);
		        transform: translateX(100%);
	}

}
/*29.03.2026 Для галереи портфолио СТОП*/


/*14.02.2025 Портфолио СТОП*/


/*15.10.2025 ср Форма авторизации СТАРТ*/
.auth-wrap{
  display:flex;
  justify-content: center;
  align-items:center;
  height: 70vh;
}

.auth-form{
  padding: 40px;
  background-color: rgba( 47, 89, 0, 1);
  /* display: flex;
  flex-direction: column;
  gap: 10px; */
}


.auth-form__title{
  font-family: Oswald, sans-serif;
  font-size: 3vw;
  color: rgba( 255, 255, 255, 1 );
  font-weight: 700;
  line-height: 4vw;
  text-align: center;
  margin-bottom: 10px;
}

.auth-form__fieldset{
  border: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-form__label-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 1);
  font-family: Comfortaa, cursive;
  line-height: 150%;
}

.auth-form__textfield {
  text-align: left;
  width: 100%;
  appearance: none;
  font-family: inherit;
  font-size: 17px;
  font-weight: 400;
  color: rgba(34, 34, 34, 1);
  border: none;
  padding: 15px;
  outline: none;
}

.auth-form__error{
  margin-top: 5px;
  color: darkred;
}


.auth-form__fieldset:last-of-type > .auth-form__label {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 20px;
}

.auth-form__pseudo-checkbox{
  width: 19px;
  height: 19px;
  border: 1px solid #fff;
  background-color: rgba(3, 23, 0, 1);
  flex-shrink: 0;
  cursor: pointer;
}

.auth-form__pseudo-checkbox:active {
  border: 1px solid rgba(3, 23, 0, 1);
  background-color: #fff;
}

input[type='checkbox'].auth-form__checkbox:active + .auth-form__pseudo-checkbox:before {
  display: inline-block;
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid #1b1919;
  background-color: transparent;
  margin: 1px;
}

input[type='checkbox'].auth-form__checkbox:checked + .auth-form__pseudo-checkbox:before {
  display: inline-block;
  content: "";
  width: 9px;
  height: 9px;
  border: 1.5px solid rgba(182, 234, 10, 1);
  background-color: currentColor;
  margin: 4px;
}

.auth-form__register-fogot{ 
  margin-top: 10px;
  display: flex;
  gap: 10px;
  color: rgba( 255, 255, 255, 1 );
}

.auth-form__link{
  display: inline-block;
  color: #fff;
  text-decoration: none;
}

.auth-form__link::after{
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  margin-top: 2px;
  background-color: rgba( 255, 255, 255, 0.7);
  transition: width 0.5s;
}

.auth-form__link:hover::after{
  width: 100%;
}





.auth-form__submit-button{
  margin-top: 10px;
  padding: 22px 40px;
  background-color: rgba(182, 234, 10, 1);
  border-radius: 250px;
  border: none;
  cursor: pointer;
  outline: none;

  font-family: inherit;
  color: rgba( 34, 34, 34, 1);
  font-weight: 600;
  font-size: 18px;

  transition-property: all;
  transition-duration: 400ms;
  transition-delay: 0ms;
  transition-timing-function: ease;
}


.auth-form__submit-button::first-letter{
  text-transform: uppercase;
}

.auth-form__submit-button:hover{
  box-shadow: 0px 0px 25px 0px rgba( 182, 234, 10, 0.4);
  background-color: rgba( 182, 234, 10, 1);
}





/*15.10.2025 ср Форма авторизации СТОП*/

/*21.05.2026 ср  404 СТАРТ*/
.not-found-content{
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  height: 75vh;
}

.not-found-content__title{
  font-size: 750%;
  line-height: 6vw;
  font-weight: 700;
  opacity: .75;
}
/*21.05.2026 ср  404 СТОП*/















/*_________________Медиа ________________*/

@media (max-width: 1694px) {

  .header__nav {
    order: 1;
    width: 100%;
  }

  .menu{
    justify-content: center;
  }

  .enhanced .menu .menu{
    top: 147%;
  }

}

@media (max-width: 1322px) {

  .main-contacts-wrap{
    flex-wrap: wrap;
    flex-direction: column;
  }

  .feedback-form{
    flex-direction: column;
    align-items: center;
  }

  .feedback-form__fieldset.feedback-form_contact__fieldset{
    width: 100%;
  }

  .main-contacts-contact-wrapinner{
    margin: auto;
  }

  .main-contacts-title{
    text-align: center;
   }

}

@media all and (max-width: 1174px) {

  .menu__btn, .menu__link{
    padding: .75rem 0.3rem;
  }

}

@media all and (max-width: 1084px) {

  .menu__btn, .menu__link{
    font-size: 15px;
  }

  .portfolio-list__elem{
    flex: 0 1 46%;
  }

}


@media all and (max-width: 1024px) {
  .category-post__text{
    flex: 0 1 50%;
  }

  .category-post__img-wrap{
    flex: 0 1 50%;             /*flex-grow:0 flex-shrink:1 (разрешаю сжатие при нехватке места   flex-basis: 30%)*/
    overflow: hidden;
  }

}

@media all and (max-width: 992px) {

  .header-nav-btn{
    display: flex;
  }

  .header{
    padding: 80px 4% 50px;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    gap: 25px;
  }

  .header__nav{
    display: none;
  }

  .header__nav_open{
    display: block;
  }

  .header__log-wrap{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header__name-wrap{
    justify-content: center;
    align-items: center;
  }

  .menu__btn, .menu__link{
    font-size: 16px;
  }

  .enhanced .menu .menu__item:last-of-type > .menu{
  
    left: 0;

  }


  .overlay{
    align-items: center;
  }

  .cover-title{
    text-align: center;
  }

  .text-title{
    font-size: 7vw;
    line-height: 8vw;
    padding: 2% 0;
  }

  .background-title{
    font-size: 4vw;
    line-height: 5vw;
    padding: 2% 0;
    width: 100%;
  }

  .cover-button{
    margin-left: 0;
  }

  .button-prev {
    inset-inline-start: 40%;
  }

  .button-next {
    inset-inline-end: 40%;
  }

  .button-prev, .button-next{

    inset-block-start: 93%;

  }

  .why-are-we__content{
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
  }

  .why-are-we__proff{
    margin-right: 0;
  }

  .why-are-we__number{
    font-size: 6vw;
  }

  .why-are-we__text{
    font-size: 24px;
    line-height: 150%;
  }

  .why-are-we__advantages{
    width: 85%;
  }

  .advantage {
    justify-content: center;
  }

  .advantage__text{
    font-size: 24px;
    line-height: 130%;
    text-align: center;
  }

  .about{
    background-image: none;
    background-color: rgba(3, 23, 0, 1);
    padding: 8% 0 4%;
  }

  .about-title-wrapper{
    width: 100%;
    margin-left: 0%;
     padding-left: 0%;
     padding-right: 0%;
     text-align: center;
  }

  .about-content {
    width: 100%;
    padding: 0% 4%;
    justify-content: center;
   }

   .about-content__title{
    font-size: 3vw;
    line-height: 4vw;
   }

   .about-content__text{
    text-align: center;
    font-size: 17px;
    color: rgba(255, 255, 255, 1);
   }

   
  .feedback-form.feedback-form_contact {
    padding: 0;
  }

  .cssSlider .slides > li > img{
    height: 100%;
  }
  .cssSlider .thumbnails{
    gap:10px;
    margin: 30px 0;
  }


}


@media all and (max-width: 880px) {

  .category-post__content {
    flex-wrap: wrap;
  }

  .category-post__text {
    flex: 0 1 100%;
  }

  .category-post__img-wrap {
    flex: 0 1 100%;

  }


}

@media all and (max-width: 768px) {

  .text-title{
    font-size: 8vw;
    line-height: 9vw;
  
  }

  .background-title{
    font-size: 5vw;
    line-height: 8vw;
  }

  .button-prev {
    inset-inline-start: 30%;
  }

  .button-next {
    inset-inline-end: 30%;
  }

  .why-are-we__proff{
    width: 35%;
  }

  .why-are-we__title{
    text-align: center;
  }


  .advantage__text{
    font-size: 21px;
  }

  .main-contacts-feedback{
    padding: 40px 20px;
  }


  .cssSlider .thumbnails{
   flex-wrap: wrap;
  }

  .thumbnails > li{
    flex-basis: 31%;
  }
}


@media all and (max-width: 680px) {

  .why-are-we__proff {
    width: 40%;
}

  .why-are-we__title{
    font-size: 7vw;
    line-height: 8vw;
  }

  .advantage{
    width: 50%;
    padding: 30px;
  }

  .advantage::before{
    width: 80px;
    height: 80px;
  }


  .about-content__title{
    font-size: 5vw;
    line-height: 6vw;

  }


  /* .main-contacts-title{
    font-size: 6vw;
    line-height: 7vw;
  } */

  .main-contacts-address__links-item{
    flex-basis: 100%;
  }

  .main-contacts-address__links-wrap{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .main-contacts-address__links-item:last-of-type > .main-contacts-address__links-wrap{
    flex-direction: row;
    gap: 40px;
  }

  .main-contacts-address__links-content{
    text-align: center;
  }

  .feedback-form__fieldset{
    flex-wrap: wrap;
    gap: 40px;
  }

  .portfolio-list__elem{
    flex: 0 1 100%;
  }


}


@media all and (max-width: 480px){


  .text-title{
    font-size: 12vw;
    line-height: 13vw;
  }

  .background-title{
    font-size: 7vw;
    line-height: 12vw;
    padding: 3%;
  }

  .button-prev {
    inset-inline-start: 25%;
  }

  .button-next {
    inset-inline-end: 25%;
  }



  .why-are-we__proff {
    width: 51%;
}

  .why-are-we__title{
    font-size: 9vw;
  }



  .feedback-form__label{
    width: 100%;
  }

  .feedback-form__textfield{
    width: 100%;
  }

}


@media all and (max-width: 400px){
  .main-contacts-feedback{
    padding: 40px 20px;
  }

  .footer,.addres__link-text{
    font-size: 15px;
  }

}


@media all and (max-width: 360px){

  .main-contacts-feedback{
    padding: 20px 10px;
  }


  .footer{
    flex-direction: column-reverse;
    gap:20px;
    padding: 5% 4%;
  }

  .addres__link {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

}



