.slide-index-right-block {
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-title {
  font-weight: 700;
  font-size: clamp(24px, 4cqi, 42px);
  max-width: 900px;
  text-align: center;
  color: #ffffff;
}

.index-slider-wrapper .swiper-button-prev:after {
  content: url("/assets/img/arrow_next.svg");
  transition: all 0.3s ease;
  transform: rotate(180deg);
}

.index-slider-wrapper .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 300px);
}

.index-slider-wrapper .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 300px);
}

.index-slider-wrapper .swiper-button-prev:hover .swiper-button-prev:after {
  filter: drop-shadow(2px 4px 6px black);
  transition: all 0.3s ease;
}

.index-slider-wrapper .swiper-button-next:after {
  content: url("/assets/img/arrow_next.svg");
  /* filter: brightness(0.5); */
  transition: all 0.3s ease;
}

.index-slider-wrapper .swiper-button-next:hover .swiper-button-next:after:hover {
  filter: unset;
  transition: all 0.3s ease;
}

.index-slider-wrapper .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid #ffffffa2;
  height: 14px;
  width: 14px;
}

.index-slider-wrapper .swiper-pagination-bullet-active {
  background-color: #ffffff63;
}

@media screen and (max-width: 1580px) {
  .slide-title {
    max-width: 1000px;
  }
  .index-slider-wrapper .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 100px);
  }
  
  .index-slider-wrapper .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 100px);
  }
}


@media screen and (max-width: 1250px) {
  .slide-title {
    max-width: 600px;
  
  }
  .index-slider-wrapper .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 150px);
  }
  
  .index-slider-wrapper .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 150px);
  }
}


@media screen and (max-width: 960px) {

  .index-slider-wrapper .swiper-button-prev {
    display: none;
  }

  .index-slider-wrapper .swiper-button-next {
    display: none;
  }
  .slide-index-right-block {
    min-height: 500px;
  }
}

@media screen and (max-width: 900px) {
  .slide-title {
    max-width: 400px;
    right: clamp(24%, 3cqi, 60%);
  }

  .slide-index-right-block {
    max-height: unset;
    height: 400px;
  }

  .slide-index-right-block img {
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 700px) {
  .slide-title {
    /* max-width: 240px; */

  }
}

@media screen and (max-width: 700px) {
  .slide-index-right-block img {
    height: 100%;
    object-fit: cover;
    object-position: -80px;
  }
}

@media screen and (max-width: 500px) {
  .slide-index-right-block img {
    height: 100%;
    object-fit: cover;
    object-position: -130px;
  }
  .slide-index-right-block {
    min-height: 320px;
  }
}

@media screen and (max-width: 450px) {
  .slide-title {
    max-width: 280px;
}
}

@media screen and (max-width: 380px) {
  .slide-title {
    right: clamp(15%, 1cqi, 60%);

  }
}

.index-terr-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2em;
  margin: 80px 0;
}

.index-terr-left-img-block img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.index-terr-left-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  align-items: flex-start;
  justify-content: flex-start;
}

.index-terr-title {
  font-weight: 700;
  font-size: clamp(24px, 4cqi, 48px);
  text-align: left;
  color: #006333;
}

.index-terr-descr {
  font-size: clamp(14px, 3cqi, 18px);
  text-align: left;
  color: #242424;
}

.index-terr-btn {
  font-size: 18px;
  text-align: left;
  color: #01247D;
  padding: 10px 40px;
  width: fit-content;
  border: 1.3px solid #01247D;
  border-radius: 8px;
  transition: all .3s ease;
}

.index-terr-btn:hover {
  color: #779BE9;
  border: 1.3px solid #779BE9;
  transition: all .3s ease;
}

@media screen and (max-width: 960px) {
  .index-terr-wrapper {
    grid-template-columns: 1.5fr 1fr;
  }

  .index-terr-left-img-block img {
    height: 345px;
    object-fit: fill;
  }

  .index-terr-wrapper {
    gap: 1em;
  }
}

@media screen and (max-width: 800px) {
  .index-terr-wrapper {
    grid-template-columns: 1.3fr 1fr;
  }

  .index-terr-left-img-block img {
    height: 300px;
    object-fit: fill;
  }

  .index-terr-wrapper {
    gap: 1em;
  }
 
}

@media screen and (max-width: 700px) {
  .index-terr-wrapper {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: unset;
  }

  .index-terr-left-blocks {
    grid-row: 2;
  }

  .index-terr-left-img-block img {
    height: 280px;
    object-fit: cover;
    width: 320px;
  }

  .index-terr-title {
    text-align: center;
  }

  .index-terr-descr {
    text-align: center;
  }

  .index-terr-left-blocks {
    align-items: center;
  }
  .index-terr-wrapper {
    margin: 40px 0;
  }
}

@media screen and (max-width: 430px) {

  .index-terr-wrapper {
    grid-template-rows: 0fr 1fr;
  }
}

@media screen and (max-width: 350px) {
  .index-terr-left-img-block img {
    width: 280px;
  }

}

.products-index-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3em;
  padding-bottom: 80px;
}

.products-index-title {
  font-weight: 700;
  font-size: clamp(24px, 4cqi, 48px);
  color: #006333;
}

.products-index-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.products-index-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1em;
  padding: clamp(16px,2.5cqi,32px);
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  min-height: clamp(250px,20cqi,300px);
}

.products-index-block img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
}

.products-index-block-title {
  font-weight: 500;
  font-size: 16px;
  color: #010613;
}

.products-index {
  overflow: hidden;
}

@media screen and (max-width:1050px) {
  .slide-products-index-wrapper {
    width: 300px;
  }
}

@media screen and (max-width:800px) {
  .slide-products-index-wrapper {
    width: 230px;
  }
  .products-index-blocks {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 60%;
    margin: 0 auto;
  }
  .products-index-block img {
    height: clamp(150px,48cqi,300px);
  }
}

@media screen and (max-width:650px) {
  .products-index-blocks {
    max-width: 90%;
  }
  
}
.zakaz-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 80px 0;
  margin: 0 auto;
  max-width: 600px;
}

.zakaz-content {
  background-color: #27313D;
}

.zakaz-title {
  font-weight: 500;
  font-size: clamp(22px, 4cqi, 48px);
  color: #ffffff;
  text-align: center;
}

.zakaz-link {
  font-weight: 400;
  font-size: clamp(14px, 3cqi, 18px);
  color: #ffffff;
  text-align: center;
  padding: 16px 48px;
  max-width: 400px;
  width: 100%;
  height: 40px;
  border-radius: 0.5em;
  background-color: #006333;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.zakaz-link:hover,
.zakaz-link:active {
  background-color: #03944e;
  transition: all .3s ease;
}

@media screen and (max-width:400px) {
  .zakaz-link {
    padding: 16px 22px;
  }
  
}
.remont-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  padding: 80px 0;
}

.remont-title {
  font-weight: 700;
  font-size: clamp(24px, 4cqi, 48px);
  color: #006333;
  text-align: center;
}

.remont-blocks {
  display: grid;
  grid-template-rows: 1fr;
}

.remont-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #EBEBEB;
 
}

.remont-block-text {
  max-width: clamp(65%,53cqi,70%);
  text-align: left;
  font-size: clamp(12px,2cqi,14px);
  font-weight: 400;
 
}
.remont-block-price {
  font-size: clamp(12px,2cqi,14px);
}
.remont-block-text span {
  position: relative;
}
.remont-block-text svg {
  margin-left: 10px;
  cursor: context-menu;
}

.remont-block-text_additional {
  transition: all .3s ease;
  text-align: left;
  font-size: 11px;
  background-color: #27313D;
  color: #ffffff;
  padding: 6px;
  border-radius: 4px;
  filter: drop-shadow(1px 2px 3px #27313D);
  position: absolute;
  width: 225px;
  top: -73px;
  left: -25px;
  opacity: 0;
  transform: scale(0.1);
  min-height: 62px;
}
.remont-block-text_additional::before {
  content: url(/assets/img/pointer.png);
  position: absolute;
  bottom: -13px;
  left: 27px;
}
.remont-block-text svg:hover + .remont-block-text_additional{
  transform: scale(1);
  opacity: 1;
  transition: all .3s ease;
}
.remont-link {
  margin-top: 1em;
  font-size: 16px;
  font-weight: 500;
  color: #01247D;
  text-decoration: underline;
  transition: all .3s ease;
}

.remont-link:hover {
  color: #779BE9;
  text-decoration: underline;
  transition: all .3s ease;
}

.swiper-index-raboty {
  width: 100%;
}

.products-index-block.raboty-block:has(a) {
  padding: unset;
  border: unset;
  align-items: center;
  justify-content: center;
  display: none;
}

.more-raboty {
  padding: 10px 40px;
  background-color: #31AC35;
  font-size: 18px;
  color: #ffffff;
  border-radius: 0.7em;
  display: none;
  transition: all .3s ease;
}

.more-raboty:hover {
  background-color: #5ECC62;
  transition: all .3s ease;
}

@media screen and (max-width:500px)  {
.remont-block {
  flex-direction: column;
  gap: 16px;
}
/* .remont-block-text {
max-width: 100%;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.2em;
} */
.remont-block-text {
  width: 100%;
  max-width: 100%;
}
.remont-block-price {
  font-weight: 700;
}
.remont-block-text span {
  display: none;
}
}
@media screen and (max-width:800px) {
  .more-raboty {
    display: block;
  }

  .products-index-block.raboty-block:has(a) {
    display: flex;
  }

  .swiper-index-raboty .swiper-slide:last-child {
    display: block;
  }

  .more-raboty.dsktp {
    display: none;
  }
}



.work-brends-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  padding-bottom: 60px;
}
.work-brends-title-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}
.work-brends-title {
  font-weight: 600;
  font-size: clamp(20px,2cqi,24px);
}
.work-brends-title-link {
 color: #3B5DCD;
 font-weight: 500;
 font-size: clamp(18px,1cqi,20px);
 text-decoration: underline; 
}
.scroll-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  will-change: transform;
  animation: move-running-line 16s linear infinite;
  
}
.scroll-wrapper {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 20px;
}
@keyframes move-running-line {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 20px));
  }
}
.work-brends-link img {
  object-fit: scale-down;
  /* height: clamp(40px,10cqi,100px); */
  height: 160px;
  width: 200px;
}
.work-brends-wrapper .work-brends-title-link:not(.work-brends-title-block .work-brends-title-link) {
  display: none;
}
@media screen and (max-width:600px) {
  .work-brends-link img {
    height: 100px;
  
  }
}

.products-index-wrapper .raboty-title {
  width: 100%;
  text-align: left;
}

.raboty-wrapper {
  align-items: center;
}

.swiper-sertificate .slide-sertificate img {
  width: 100%;
}

.swiper-sertificate .swiper-button-prev {
  left: auto;
  right: 90px;
  top: -30px;
}

.swiper-sertificate .swiper-button-next {
  top: -30px;
}

.swiper-sertificate .swiper-button-prev:after {
  content: url("/assets/img/sert-prev.svg");
}

.swiper-sertificate .swiper-button-next:after {
  content: url("/assets/img/sert-next.svg");
}

.sertificate-wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.swiper-sertificate {
  position: relative;
}

.sertificate-index-title {
  font-weight: 700;
  font-size: clamp(24px, 4cqi, 48px);
  text-align: left;
}

@media screen and (max-width:940px) {
  .swiper-sertificate .slide-sertificate img {
    width: clamp(240px, 3cqi, 290px);
  }

  .swiper-sertificate .swiper-button-prev {
    display: none;
  }

  .swiper-sertificate .swiper-button-next {
    display: none;
  }
}

.zayavka-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  padding: 3em 0;
}

.zayavka-left-block {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: flex-start;
  max-width: 500px;
  width: 100%;
}

.zayavka-title {
  text-align: left;
  font-weight: 700;
  font-size: clamp(24px, 4cqi, 48px);
  color: #ffffff;
}

.zayavka-descr {
  text-align: left;
  font-size: clamp(20px, 4cqi, 24px);
  color: #ffffff;
}
.control__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.zayavka-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin-top: 6em;
}

.zayavka-form input {
  padding: 18px 20px;
  border-radius: 0.7em;
  border: none;
  outline: none;
  width: 100%;
  border: 1px solid transparent;
  transition: all .3s ease;
}
.zayavka-form input:focus {
  border: 1px solid #006333;
  transition: all .3s ease;
}
.chckbox-block {
  display: flex;
  align-items: center;
  gap: 0.5em;
  height: 52px;
}
.chckbox-block input[type="checkbox"] {
  width: 20px;
  height: 20px;
}
.contacts-form .checkbox-text {
  color: #000000;
}
.checkbox-text {
  font-size: clamp(12px,2cqi,14px);
  text-align: left;
  color: #ffffff;
}

.after-header-form-agree-block {
  display: flex;
  align-items: center;
  gap: 1em;
}
.control-wrapp {
  position: relative;
}
.just-validate-error-label {
  position: absolute;
  top: -10px;
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;

}
.hystmodal__close {
  right: 16px;
  top: 16px;
background-image: url(/assets/img/plus.svg);
}
.hystmodal--active {
  z-index: 999999999999999999;
  background: #242424db;
}
.hystmodal__close:focus {
  outline: none;
}
.hystmodal__window {
  border-radius: 8px;
}
.chckbox-block {
  position: relative;
}
.error-label-checkbox {
  position: absolute;
  top: 0;
  top: -23px;
  font-size: 12px;
}
.contacts-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contacts-form .control-wrapp input {
  width: 100%;
  height: 44px;
  border-radius: 8px;
  outline: 0px;
  border: 1px solid #e0e0e0;
  padding: 0 9px;
}
.contacts-block{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contacts-form-title {
  font-size: 18px;
  text-align: center;
  font-weight: 500;
}
.modal-callback-content {
  border-radius: 8px;
}
.after-header__approve-btn {
  padding: 10px 40px;
  background-color: #31AC35;
  border-radius: 0.7em;
  max-width: fit-content;
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
  transition: all .3s ease;
}
.contacts-form .footer-right-btn {
  margin: 0 auto;
}
.footer-right-btn {
  font-weight: 400;
    font-size: clamp(14px, 3cqi, 16px);
    color: #ffffff;
    text-align: center;
    padding: 16px 48px;
    width: 120px;
    height: 40px;
    border-radius: 0.5em;
    background-color: #006333;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  
    cursor: pointer;
}
.footer-right-btn:hover,
.footer-right-btn:active {
  background-color: #03944e;
    transition: all .3s ease;
}
.after-header__approve-btn:hover {
  background-color: #5ECC62;
  transition: all .3s ease;
}

@media screen and (max-width:980px) {
  .zayavka-wrapper {
    grid-template-rows: 0fr 1fr;
    grid-template-columns: unset;
    gap: 1em;
    max-width: 500px;
    margin: 0 auto;
  }
.zayavka-form .control__wrapper {
  width: 100%;
}
  .zayavka-form {
    max-width: unset;
    margin-top: unset;
    align-items: center;
  }

  .zayavka-form input {
    width: 100%;
  }

  .zayavka-form input[type="checkbox"] {
    width: auto;
  }

  .zayavka-title {
    text-align: center;
  }

  .zayavka-left-block {
    align-items: center;
  }

  .zayavka-descr {
    text-align: center;
  }

  .after-header-form-agree-block {
    width: 100%;
  }
}

.main-catalog-product-thumb-slide-block {
  display: flex;
  /* width: 110px; */
}

.gallery-thumbs {
  width: 100%;
  padding: 0 20px;
  overflow: hidden;

}

.gallery-thumbs .swiper-wrapper .swiper-slide {

  height: 64px;
  overflow: hidden;
  border-radius: 0.5em;
}

.gallery-thumbs .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  min-width: 110px;
  object-fit: cover;
}

.gallery-thumbs .swiper-wrapper .swiper-slide-thumb-active {
  border: 1px solid #2A72B5
}

.gallery-slider {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  overflow: hidden;
}

.gallery-slider .swiper-wrapper .swiper-slide {
  width: auto;
  height: 500px;
}

.gallery-slider .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slider .swiper-wrapper .swiper-slide iframe {
  display: block;
  width: 100%;
  height: 350px;

}

.main-catalog-product-thumb-slide-block .swiper-button-next:after,
.main-catalog-product-thumb-slide-block .swiper-button-prev:after {
  font-weight: 700;
  font-size: 20px;
}

.main-catalog-product-thumb-slide-block .swiper-button-prev,
.main-catalog-product-thumb-slide-block .swiper-button-next {
  width: calc(var(--swiper-navigation-size) / 44* 12) !important;
}

.main-catalog-product-thumb-slide-block .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 0px);
}

.main-catalog-product-thumb-slide-block .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 0px);
}

.product-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.product-top-wrap {
  display: flex;
  gap: 1em;
  align-items: flex-start;
  justify-content: space-between;
}

.product-sliders {
  /* max-width: calc(100% / 2); */
  display: flex;
  flex-direction: row;
  /* height: 300px; */
}

.product-text-blocks {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: flex-start;
  width: 100%;
}

.product-title {
  font-weight: 700;
  font-size: clamp(24px, 4cqi, 48px);
  color: #010613;
  text-align: left;
}

.product-descr {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  text-align: left;
}

.product-about {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}

.product-link:hover {
  text-decoration: underline;
}

.product-texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-text-blocks .slide-index-btn-link {
  background-color: #31AC35;
  color: #ffffff;
  padding: 10px 45px;
  transition: all .3s ease;
  border-radius: 0.7em;
}

.product-text-blocks .slide-index-btn-link:hover {
  background-color: #5ECC62;
  transition: all .3s ease;
}

.product-text-blocks .slide-index-btn-link:active {
  background-color: #5ECC62;
  transition: all .3s ease;
}

@media screen and (max-width:1200px) {
  .gallery-slider {
    max-width: 550px;
  }

  .gallery-slider .swiper-wrapper .swiper-slide {
    height: 400px;
  }
}

@media screen and (max-width:1000px) {
  .product-sliders {
    display: flex;
    flex-direction: column-reverse;
    gap: 1em;
  }

  .gallery-thumbs {
    padding: 0;
  }

  .gallery-thumbs .swiper-wrapper .swiper-slide {
    height: 110px;
    border-radius: 0.3em;
  }

}

@media screen and (max-width:860px) {
  .product-top-wrap {
    flex-direction: column;
  }

  .product-text-blocks {
    align-items: center;
  }

  .gallery-slider {
    width: 100%;
    max-width: unset;
  }

  .product-sliders {
    width: 100%;
  }

  .product-wrapper {
    gap: 1em;
  }
}

@media screen and (max-width:500px) {
  .gallery-slider .swiper-wrapper .swiper-slide {
    height: 340px;
  }
}

@media screen and (max-width:400px) {
  .gallery-slider .swiper-wrapper .swiper-slide {
    height: 240px;
  }
}

.tabs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.tab-doc {
  display: flex;
  align-items: flex-start;
}

.tablinks {
  color: #000000;
  font-size: clamp(14px, 3cqi, 18px);
  outline: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 0 27px 7px 27px;
  transition: all .3s ease;
  cursor: pointer;
  text-align: center;

}

.tablinks:hover {
  transition: all .3s ease;
  border-bottom: 3px solid #779BE9;
}

.tablinks.active {
  transition: all .3s ease;
  border-bottom: 3px solid #779BE9;
}

.tabcontent-doc {
  display: flex;
  flex-direction: column;
  gap: 2em;
  animation: fadeEffect 1s;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.tabcontent-doc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5em;
}

.tabcontent-block {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  height: 300px;
  border: 1px solid #EAEEF5;
  justify-content: flex-end;
  padding: 0 28px;
  padding-bottom: 3em;
  align-items: center;
}

.tabcontent-title {
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;

}

.tabcontent-link {
  padding: 10px 60px;
  background: #2A72B5;
  font-family: Roboto;
  font-size: 14px;
  color: #ffffff;
  transition: all .3s ease;
  width: fit-content;
  border: 1px solid transparent;
}

.tabcontent-link:hover {
  background: transparent;
  transition: all .3s ease;
  border: 1px solid #2A72B5;
  color: #2A72B5;
}

.tabs-content {
  margin-top: 3em;

}

.tabcont-text {
  font-size: 14px;
  color: #000000;
  text-align: left;
}

@media screen and (max-width: 1150px) {
  .tabcontent-doc {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media screen and (max-width: 900px) {}

@media screen and (max-width: 740px) {}

@media screen and (max-width: 590px) {


  /* .tabs-content .container {
    padding: unset;
  } */
  .tabcontent-doc {
    padding: 0 1em;
  }

  .tabcontent-block {
    height: 100%;
    min-height: 250px;
  }
}

@media screen and (max-width: 480px) {
  .tablinks {
    min-height: 45px;
  }

  .tab-doc {
    align-items: center;
  }
}

@media screen and (max-width: 380px) {
  .tablinks {
    padding: 0 15px 7px 15px;
    min-height: 45px;
  }

  .tab-doc {
    align-items: center;
  }
}

.zamena-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.zamena-title {
  font-weight: 700;
  font-size: clamp(24px, 4cqi, 48px);
  color: #000000;
  text-align: left;
}

.zamena-blocks {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
}

.zamena-img-block img {
  width: 100%;
}

.zamena-text-blocks {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
}

.zamena-list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.zamena-list li {
  list-style: disc;
  font-size: clamp(16px, 3cqi, 24px);
  color: #000000;
  list-style-position: inside;
  text-align: left;
}

.zamena-link {
  padding: 10px 48px;
  background: #31AC35;
  font-size: 18px;
  color: #ffffff;
  border-radius: 0.7em;
  transition: all .3s ease;
}

.zamena-link:hover {
  transition: all .3s ease;
  background: #5ECC62;
}

@media screen and (max-width:780px) {
  .zamena-blocks {
    gap: 2em;
  }
}

@media screen and (max-width:740px) {
  .zamena-blocks {
    grid-template-columns: unset;
    grid-template-rows: 1.5fr 0.6fr;
  }

  .zamena-img-block img {
    width: 80%;
  }

  .zamena-list li {
    text-align: center;
  }
}

@media screen and (max-width:400px) {
  .zamena-title {
    text-align: center;
  }

  .zamena-img-block img {
    width: 100%;
  }

  .zamena-blocks {
    gap: 0.2em;
  }
}

.adv-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 4em 0;
}

.adv-content {
  background-color: #01247D;
}

.adv-title {
  font-weight: 700;
  font-size: clamp(24px, 3cqi, 48px);
  color: #ffffff;
  text-align: center;
}

.adv-descr {
  font-weight: 500;
  font-size: clamp(16px, 3cqi, 40px);
  color: #ffffff;
  text-align: center;
}

.adv-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5em;
}

.adv-block {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  align-items: flex-start;
}

.adv-block-title {
  font-weight: 400;
  font-size: clamp(18px, 2cqi, 24px);
  color: #ffffff;
  text-align: left;
}

.adv-block-text {
  font-weight: 400;
  font-size: clamp(14px, 2cqi, 18px);
  color: #ffffff;
  text-align: left;
}

@media screen and (max-width:710px) {
  .adv-blocks {
    grid-template-columns: unset;
    grid-template-rows: 0.7fr 0.7fr 0.7fr;
    gap: 2em;
  }

  .adv-block {
    align-items: center;
  }

  .adv-block-text {
    text-align: center;
  }
}

.price-single-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 3em 0;
}

.price-single-title {
  font-weight: 700;
  font-size: clamp(24px, 3cqi, 48px);
  color: #010613;
  text-align: center;
}

.price-single-blocks {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.price-single-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7em 0;
  border-bottom: 1px solid #EBEBEB;
}

.price-single-text {
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  color: #010613;
}

.price-single-price {
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  color: #01247D;
}

@media screen and (max-width:500px) {
  .price-single-block {
    flex-direction: column;
  }
}

.when-repair-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr;
  gap: 3em;
  padding: 3em 0;
}

.when-repair-text-blocks {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.when-repair-title {
  font-weight: 700;
  font-size: clamp(24px, 3cqi, 48px);
  color: #010613;
  text-align: left;
}

.when-repair-text {
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  color: #010613;
}

.when-repair-img-blocks {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.7em;
}

.when-repair-img-block img {
  width: 100%;
  object-fit: cover;
  height: 260px;
}

@media screen and (max-width:1000px) {
  .when-repair-wrapper {
    grid-template-columns: unset;
    grid-template-rows: 1fr 1.7fr;
    gap: 1em;
    padding: 2em 0;
  }

  .when-repair-img-blocks {
    width: 60%;
    margin: 0 auto;
  }
}

@media screen and (max-width:900px) {
  .when-repair-img-blocks {
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (max-width:700px) {
  .when-repair-img-blocks {
    grid-template-rows: 0fr 0fr;
    height: max-content;
  }

  .when-repair-wrapper {
    grid-template-rows: 0.5fr 1fr;
  }
}

@media screen and (max-width:500px) {
  .when-repair-img-blocks {
    width: 100%;

    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .when-repair-img-block img {
    height: 220px;
    width: 100%;
  }

  .when-repair-wrapper {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width:380px) {
  .when-repair-img-block img {
    height: 160px;
  }

}

.tab-ceny {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 2em;
  row-gap: 1em;
}

.tablinks-ceny {
  font-size: 18px;
  text-align: center;
  padding: 10px 32px;
  background: transparent;
  border: 1px solid #01247D;
  transition: all .3s ease;
  border-radius: 0.7em;
  color: #010613;
}

.tablinks-ceny:hover {
  border: 1px solid transparent;
  background: #01247D;
  transition: all .3s ease;
  color: #ffffff;
}

.tablinks-ceny.active {
  border: 1px solid transparent;
  background: #01247D;
  transition: all .3s ease;
  color: #ffffff;
}

.tabcontent-ceny {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.tab-ceny-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px solid #EBEBEB;
}

.tabs-wrapper {
  margin-bottom: 3em;
}

.tab-ceny-title {
  font-weight: 700;
  font-size: clamp(24px, 3cqi, 48px);
  color: #010613;
  text-align: left;

}

.tab-ceny-block-text {
  font-weight: 500;
  font-size: 18px;
  color: #01247D;
}

.accordion__list {
  display: none;
}

@media screen and (max-width:800px) {
  .tab-ceny {
    display: none;
  }

  .tabcontent-wrap {
    display: none;
  }

  .accordion__content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 20px;
    will-change: max-height;
    transition: all 0.3s ease-out;
    box-sizing: content-box;
    line-height: 1.314;
    font-size: 16px;
  }

  .accordion__list {
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1em;
    list-style: none;
    margin-bottom: 1.5em;
  }

  .accordion__control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 10px 20px;
    background-color: #01247D;
    border-radius: 0.7em;
    cursor: pointer;
    width: 100%;
    transition: all .3s ease;
  }

  .accordion__control:focus {
    background-color: #779BE9;
    transition: all .3s ease;
  }

  .accordion__control[aria-expanded="true"] {
    border-bottom: none;
  }

  .accordion__control[aria-expanded="false"] {
    border-bottom: none;
    background-color: #01247D;
    transition: all .3s ease;
  }

  .accordion__control::-webkit-details-marker {
    display: none;
  }

  .accordion__content {
    padding: 20px;
  }

  .accordion[open] .accordion__icon {
    transform: rotate(180deg);
  }

  .accordion__content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 20px;
    will-change: max-height;
    transition: all 0.3s ease-out;
    box-sizing: content-box;
    line-height: 1.314;
    font-size: 16px;

  }

  .accordion__title {
    line-height: 1.314;
    font-size: 18px;
    color: #ffffff;
    text-align: left;
    font-weight: 400;
  }

  .accordion__icon {
    transition: transform 0.3s ease-out;
  }

  .open .accordion__icon {
    transform: rotate(180deg);
  }

  .open .accordion__content {
    opacity: 1;
    padding: 20px;
  }

  .tabs-wrapper {
    margin-bottom: 1em;
  }
}

@media screen and (max-width:500px) {
  .tab-ceny-block {
    flex-direction: column;
    gap: 0.5em;
    padding: 16px 0;
  }

  .accordion__list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.o-nas-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 3em 0;
}

.brd-wrap {
  padding-top: 1em;
}

.o-nas-title {
  font-weight: 700;
  font-size: clamp(24px, 3cqi, 48px);
  color: #ffffff;
  text-align: left;
}

.o-nas-content {
  background: url(/assets/img/o-nas-bg.png) no-repeat center;
  background-color: #000F36DE;
  background-size: cover;
  background-blend-mode: multiply;
}

.brd-wrap .breadcrumb ul li {
  color: #ffffff;
}

.o-nas-text {
  font-weight: 400;
  font-size: clamp(14px, 3cqi, 18px);
  color: #ffffff;
  text-align: left;
}

.who-work-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin: 3em 0;
}

.who-work-title {
  font-weight: 700;
  font-size: clamp(24px, 3cqi, 48px);
  color: #010613;
  text-align: center;
}

.who-work-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5em;
}

.who-work-block {
  display: flex;
  min-height: 310px;
  align-items: center;
  justify-content: center;
  background: #779BE9;
  border-radius: 0.7em;
  transition: all .3s ease;
}

.who-work-block-hov {
  display: none;
}

.who-work-block-title {
  font-weight: 500;
  font-size: clamp(18px, 3cqi, 24px);
  color: #ffffff;
  text-align: center;
}

.who-work-block:hover {
  background: #01247D;
  transition: all .3s ease;
}

.who-work-block:hover .who-work-block-hov {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.who-work-block:hover .who-work-block-title {
  display: none;
}

.who-work-hov-title {
  font-weight: 500;
  font-size: clamp(18px, 3cqi, 24px);
  color: #ffffff;
  text-align: center;
}

.who-work-list {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.who-work-list li {
  text-align: left;
  list-style: disc;
  list-style-position: inside;
  color: #ffffff;
  font-size: 18px;
}

@media screen and (max-width:1000px) {
  .who-work-block {
    min-height: clamp(170px, 35cqi, 310px);
  }
}

@media screen and (max-width:700px) {
  .who-work-blocks {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width:380px) {
  .who-work-hov-title {
    font-size: 16px;
  }

  .who-work-list li {
    font-size: 14px;
  }
}

.works-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.works-title {
  font-weight: 700;
  font-size: clamp(24px, 3cqi, 48px);
  color: #010613;
  text-align: left;
}

.works-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
}

.works-block {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.works-image-blocks {
  display: flex;
  flex-direction: column;
  gap: .5em;
}

.works-image-block img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.works-block {
  padding: 30px;
  border: 1px solid #EBEBEB;
  border-radius: 0.7em;
}

.fancybox__caption {
  position: relative;
  left: -300px;
}

.row-work-block .works-image-blocks {
  flex-direction: row;
}

.row-work-block .works-image-blocks img {
  height: 315px;
}

.one-image-work-block .works-image-block:last-child {
  display: none;
}

.one-image-work-block .works-image-block:first-child img {
  height: 300px;
}

.works-wrapper {
  margin-bottom: 3em;
}

@media screen and (max-width:1000px) {
  .works-blocks {
    gap: 1em;
  }

  .works-image-block img {
    height: clamp(100px, 35cqi, 150px);
  }
}

@media screen and (max-width:400px) {
  .works-blocks {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .works-title {
    text-align: center;
  }

}

.ymaps-2-1-79-balloon__layout,
.ymaps-2-1-79-balloon__content {
  background-color: #01247D !important;
}

.ymaps-2-1-79-balloon__close {
  display: none !important;
}

#map {
  height: 500px;
}

.contact-block-map {
  display: flex;
  align-items: flex-start;
  gap: 1em;
}

.contact-text-block {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.contact-block-map img {
  width: 30px;
  object-fit: scale-down;
  object-position: top;
}

.ymaps-2-1-79-balloon__content {
  padding: 56px 12px !important;
}

.contact-title {
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
}

.contact-descr {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

.contact-tel {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

.contact-block-map:not(:last-child) {
  padding-bottom: 1.2em;
}

.contact-tel:hover {
  text-decoration: underline;
}

@media screen and (max-width:400px) {
  .contact-descr {
    font-size: 14px;
  }

  .contact-tel {
    font-size: 14px;
  }

  .contact-block-map {
    max-width: 70%;
  }

}

.contacts-wrapper {
  display: flex;
  gap: 2em;
  margin-bottom: 3em;
  justify-content: space-between;
  align-items: center;
}

.contacts-texts {
  max-width: 416px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}
.contacts-title {
  font-weight: 700;
  font-size: clamp(24px, 4cqi, 48px);
  color: #006333;
}

.contacts-map iframe{
  width: 750px;
  height: 450px;
  border-radius: 26px;
}

.contacts-main-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contacts-main-title {
  font-size: 18px;
  text-align: left;
  font-weight: 600;
}
.contacts-main-block a {
  transition: all .3s ease;
}
.contacts-main-block a:hover,
.contacts-main-block a:active {
  color: #03944e;
  transition: all .3s ease;
}

@media screen and (max-width:1100px) {
  .contacts-wrapper {
    flex-direction: column;
  }
  .contacts-main-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .contacts-texts {
  max-width: 100%;
  }
  .contacts-map iframe {
    max-width: 1200px;
    width: 100%;
  }
  .contacts-map {
    width: 100%;
  }
}
@media screen and (max-width:900px) {
.contacts-main-blocks {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width:650px)  {
  .contacts-main-blocks {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width:400px) {
  .contacts-main-blocks {
    grid-template-columns: 1fr;
  }
}
}
.srch-modall {
  order: 5;
}

.hd-middle-menu-nav.nn1 {
  display: none;
}

.srch-modall.nn3 {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1em;
}

.srch-modall input {
  width: 100%;
  border: none;
  outline: none;
  border-bottom: 1px solid #EBEBEB;
}

.srch-modall input {
  display: none;
}

.srch-modall input.nn2 {
  display: flex;
}

.wts-hd-block.nn1,
.logo-block-hd.nn1,
.tel-block-hdd.nn1 {
  display: none;
}

.block-modal-contact {
  padding: clamp(16px,6cqi,42px);
}

@media screen and (max-width:800px) {
  .hystmodal__window {
    max-width: 70%;
    margin: 0 auto;
  }

  .block-modal-contact {
    padding: 16px;
  }

  .block-modal-contact {
    max-width: 70%;
    margin: 0 auto;
  }
}

@media screen and (max-width:600px) {
  .block-modal-contact {
    max-width: 85%;
    margin: 0 auto;
  }
}

@media screen and (max-width:400px) {
  .hystmodal__window {
    max-width: 90%;
    margin: 0 auto;
  }
}

#individual-form textarea {
  width: 100%;
  color: #010613;
  font-size: 18px;
  background: #EBEBEB;
  border-radius: 9px;
  padding: 1em;
  border: none;
  outline: none;
  height: clamp(100px, 35cqi, 150px);
}

.cookie-notice {
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  padding: 15px;
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.cookie-button {
  background-color: #006333;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  transition: all .3s ease;
}
.cookie-button:hover,
.cookie-button:active {
  transition: all .3s ease;
  background-color: #03944e;
}

.sbmt-individual {
  position: fixed;
  /* transform: translate(-50%, -50%); */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 7656754754675467546754675467;
  background: #3a3939c7;
}

.sbmt-individual_wrap {
  width: 600px;
  margin: 0 auto;
  /* width: 100%; */
  /* transform: translate(0%, 45%); */
  top: 40%;
  position: relative;
  text-align: center;
  color: #161616;
  font-size: 32px;
  display: flex;
  gap: 1em;
  flex-direction: column;
  background: #ffffff;
  padding: 48px 24px;
  border-radius: 0.5em;
  line-height: 43px;
}

.sbmt-individual_wrap button {
  height: 24px;
  position: absolute;
  right: 16px;
  top: 16px;
}
.sbmt-individual_wrap button svg {
  height: 100%;
  width: 100%;
}

.checkbox-text a {
  color: #19b268;
}