@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: "TT Interfaces", sans-serif;
}

html {
  scroll-behavior: smooth;
}

html {
  font-size: 62.5%;
}

@media (max-width: 1920px) {
  html {
    font-size: 62.5%;
  }
}
@media (max-width: 1820px) {
  html {
    font-size: 58.5%;
  }
}
@media (max-width: 1720px) {
  html {
    font-size: 54.5%;
  }
}
@media (max-width: 1620px) {
  html {
    font-size: 50.5%;
  }
}
@media (max-width: 1520px) {
  html {
    font-size: 46.5%;
  }
}
@media (max-width: 1420px) {
  html {
    font-size: 42.5%;
  }
}
@media (max-width: 1320px) {
  html {
    font-size: 38.5%;
  }
}
@media (max-width: 1220px) {
  html {
    font-size: 34.5%;
  }
}
@media (max-width: 1120px) {
  html {
    font-size: 30.5%;
  }
}
@media (max-width: 1020px) {
  html {
    font-size: 26.5%;
  }
}
@media (max-width: 920px) {
  html {
    font-size: 22.5%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}
body {
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 182rem;
  margin: 0 auto;
}

.btn {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border: 0.2rem solid #FFFFFF;
  border-radius: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.btn.bg-white {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #282828;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg-img:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
      background-color: #00000080;
}
.bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h1 {
  font-size: 8rem;
  text-align: center;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 124%;
}

h2 {
  font-size: 7.6rem;
  line-height: 110%;
  font-weight: 400;
  text-transform: uppercase;
}

p {
  font-size: 2rem;
  font-weight: 400;
  line-height: auto;
}

section h2 {
  padding: 3rem 0;
}
section .title {
  border-top: 0.2rem solid #AAAAAA;
  border-bottom: 0.2rem solid #AAAAAA;
}
section .title .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lines {
  border-color: #AAAAAA;
  height: 13.5rem;
  display: flex;
}
.lines div {
  width: 50%;
}
.lines div:first-child {
  border-right: 0.2rem solid #AAAAAA;
}

.header {
  background-color: #282828;
  color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.header.header--hidden {
  transform: translateY(-100%);
}
.header .container {
  display: flex;
  align-items: center;
}
.header__logo {
  padding: 2.1rem 8.8rem 2.1rem 0;
  border-right: 0.2rem solid #FFFFFF;
  font-size: 4.5rem;
  font-weight: bold;
  letter-spacing: -0.4rem;
  text-transform: uppercase;
}
.header__content {
  margin-left: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__content-menu nav ul {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.header__content-menu nav ul a {
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 2rem;
}
.header__content-btns {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.header__content-btns .btn {
  height: 4rem;
  width: -moz-fit-content;
  width: fit-content;
}
.header__content-btns .btn:nth-child(1) {
  width: 20rem;
}
.header__content-btns .btn:nth-child(2) {
  width: 23rem;
}

.hero {
  height: 100vh;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.2rem;
  height: 100%;
}
.hero .container .btn {
  font-size: 3rem;
  height: 7rem;
  width: 42rem;
  border-radius: 6rem;
  text-transform: uppercase;
}

.faq__list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
}
.faq__list-item:first-child .question {
  border-top: 0 solid #AAAAAA;
  padding: 0 0 2.5rem 0;
}
.faq__list-item .question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 0;
  border-bottom: 0.2rem solid #AAAAAA;
}
.faq__list-item .question__text {
  font-size: 4.4rem;
  text-transform: uppercase;
}
.faq__list-item .question__podpis {
  font-size: 2rem;
}
.faq__list-item .answer {
  display: flex;
  gap: 1rem;
  font-size: 2rem;
  padding-top: 3rem;
}
.faq__list-item .answer > div {
  margin-left: 20rem;
}
.faq__list-item .answer img {
  max-width: 92rem;
	max-height: 50rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.faq__list-item .answer {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: height 0.45s ease, opacity 0.3s ease, transform 0.3s ease;
  padding-top: 0;
}
.faq__list-item.is-open .answer {
  opacity: 1;
  transform: translateY(0);
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 0.2rem solid #AAAAAA;
}
.faq__list-item.is-open .question svg {
  transform: rotate(90deg);
}
.faq__list-item .question {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faq__list-item .question svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 2.4rem;
}

.services {
  margin-top: 16.5rem;
}
.services__arrows {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.services__arrows-prev, .services__arrows-next {
  cursor: pointer;
  border-radius: 5rem;
  width: 11.4rem;
  height: 5.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.2rem solid #282828;
  transition: 0.3s ease;
}
.services__arrows-prev svg, .services__arrows-next svg {
  width: 7rem;
}
.services__arrows-prev svg path, .services__arrows-next svg path {
  transition: 0.3s ease;
}
.services__arrows-prev.swiper-button-disabled, .services__arrows-next.swiper-button-disabled {
  opacity: 0.4;
}
.services__arrows-prev:hover, .services__arrows-next:hover {
  background-color: #282828;
  border: 0.2rem solid #282828;
}
.services__arrows-prev:hover path, .services__arrows-next:hover path {
  fill: #FFFFFF;
}
.services__arrows-prev.swiper-button-disabled:hover, .services__arrows-next.swiper-button-disabled:hover {
  background-color: rgba(40, 40, 40, 0);
  border: 0.2rem solid #282828;
}
.services__arrows-prev.swiper-button-disabled:hover path, .services__arrows-next.swiper-button-disabled:hover path {
  fill: #282828;
}
.services__arrows-next svg {
  transform: rotate(180deg);
}
.services__slider {
  display: flex;
}
.services__slider-item {
  width: 33.33%;
  border: 0.1rem solid #AAAAAA;
}
.services__slider-item-img {
  width: 100%;
  height: 51.2rem;
}
.services__slider-item-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services__slider-item-title {
  padding: 1.5rem 3.8rem;
  border-bottom: 0.1rem solid #AAAAAA;
  border-top: 0.1rem solid #AAAAAA;
  background-color: #282828;
  color: #FFF;
}
.services__slider-item-link, .services__slider-item-link p{
	display:block;
	font-size:2.4rem;
	text-transform: uppercase;
	text-align:center;
	transition: 0.3s ease;
}
.services__slider-item-link:hover{
	background-color: #28282820;
	color:#000;
}
.services__slider-item-link:hover p{
	color:#000;
}

.services__slider-item-more{
	padding: 1.5rem 3.8rem;
	color: #FFF;
	background-color: #282828;
	border-top: 0.1rem solid #AAAAAA;
	position:absolute;
	top:100%;
	opacity:0;
	transition: 0.4s ease;
}
.services__slider-item:hover .services__slider-item-more{
	top:auto;
	bottom:0;
	opacity:1;
}
.services__slider-item:hover .services__slider-content{
	overflow: visible;
}
.services__slider-content{
	background-color: #282828;
	position:relative;
	overflow:hidden;
}
@media(max-width:480px){
	.services__slider-item-link p{
		font-size:2rem;
	}
	.services__slider-item-more{
		position:relative;
		top:0;
		opacity:1;
		        padding: 1rem;
	}
	.advantages__list-item > div{
		border-bottom:0!important;
	}
}
.services__slider-item-text {
  padding: 1.5rem 3.8rem;
  display: flex;
  justify-content: space-between;
  background-color: #282828;
  color: #FFF;
}
.services__slider-item-text p:first-child {
  color: #9D9D9D;
}

.advantages__list {
  display: flex;
}
.advantages__list-item{
	max-width:50%;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media(max-width:768px){
	.advantages__list-item{
		max-width:100%;
	}
}
.advantages__list-item img{
	max-height: 74rem;
	height:100%;
	object-fit:cover;
}
.advantages__list-item > div {
  max-width: 96rem;
  padding: 2.5rem 7.5rem 4.8rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
	border-bottom: 0.2rem solid #AAAAAA;
}
.advantages__list-item-title {
  font-size: 4.4rem;
	line-height:100%;
}
.advantages__list-item-text {
  font-size: 2rem;
}
.advantages__list-item .btn {
  background-color: #282828;
  width: 33rem;
  height: 5.1rem;
  border-radius: 5rem;
}
.advantages__list-item:first-child {
  border-right: 0.2rem solid #AAAAAA;
}

.about {
  border-bottom: 0.2rem solid #AAAAAA;
}
.about > .container {
  display: flex;
}
.about__left {
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 3rem;
  padding-bottom: 16.5rem;
  max-width: 71.4rem;
  margin-right: 11rem;
}
.about__right {
  padding-bottom: 16.5rem;
  padding-top: 3rem;
  border-left: 0.2rem solid #AAAAAA;
}
.about__right img {
  max-width: 102rem;
}

.form-section .container {
  display: flex;
  gap: 15rem;
}
.form-section__right {
  max-width: 82rem;
  margin-top: 4rem;
}
.form-section__right p {
  line-height: 100%;
}
.form-section__right form {
  margin-top: 6rem;
}
.form-section__right form input {
  width: 100%;
  font-size: 2rem;
  padding: 1rem 0.4rem;
  border: 0;
  border-bottom: 0.2rem solid #AAAAAA;
}
.form-section__right form input[type=file] {
  border: 0;
  padding: 0;
}
.form-section__right form p {
  margin-top: 7.5rem;
  margin-bottom: 2rem;
}
.form-section__right form .btn {
  margin-top: 2rem;
  background-color: #000;
  max-width: 40.2rem;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  border-radius: 5rem;
}

.footer {
  margin-top: 16.5rem;
  background-color: #282828;
  padding-top: 3rem;
  padding-bottom: 4rem;
  color: #fff;
}
.footer__logo {
  font-size: 8.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -0.8rem;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer ul {
  display: flex;
  align-items: center;
  gap: 5rem;
  font-size: 2rem;
  text-transform: uppercase;
}
.footer__dev {
  color: rgba(255, 255, 255, 0.5019607843);
  display: flex;
  justify-content: space-between;
  margin-top: 10rem;
  font-size: 2rem;
  align-items: center;
}

.section-title {
  padding-top: 10rem;
}
.section-title h1 {
  padding-top: 4rem;
  color: #000000;
  font-weight: 400;
  text-align: start;
  width: 50%;
}
.section-title.page-faq {
  border-bottom: 0.2rem solid #282828;
}
.section-title.page-faq .container {
  display: flex;
  height: 30rem;
}
.section-title.page-faq .section-title__text {
  padding-bottom: 3rem;
}
.section-title .container {
  display: flex;
  height: 55rem;
}
.section-title__text {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding-top: 4rem;
  color: #9D9D9D;
  border-left: 0.2rem solid #AAAAAA;
  padding-left: 10.8rem;
  padding-bottom: 6rem;
  max-width: 70rem;
}
.section-title__text-title {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 2rem;
  margin-top: auto;
}

.category {
  padding: 3rem 0;
  border-top: 0.2rem solid #AAAAAA;
  border-bottom: 0.2rem solid #AAAAAA;
}
.category__item {
  font-size: 2rem;
  padding: 1.2rem 4rem;
  border-radius: 5rem;
  border: 0.1rem solid #282828;
  cursor: pointer;
  transition: 0.3s ease;
}
.category__item:hover {
  color: #FFF;
  background-color: rgba(40, 40, 40, 0.5019607843);
  border: 0.1rem solid rgba(40, 40, 40, 0.5019607843);
}
.category__item.active {
  color: #FFF;
  background-color: #282828;
  border: 0.1rem solid #282828;
}
.category .container {
  display: flex;
  flex-wrap: wrap;
  gap: 3.4rem;
}

.arhive {
  margin-top: 16.5rem;
}
.arhive__list {
  display: flex;
  flex-direction: column;
}
.arhive__list-item {
  padding-top: 3rem;
  padding-bottom: 16.5rem;
  border-bottom: 0.2rem solid #AAAAAA;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  /* Анимация появления при скролле */
}
.arhive__list-item:nth-child(1) {
  padding-top: 0;
}
.arhive__list-item:nth-child(2n) .container {
  flex-direction: row-reverse;
}
.arhive__list-item .container {
  display: flex;
  gap: 2rem;
}
.arhive__list-item-title {
  font-size: 7.6rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 100%;
  letter-spacing: -0.1rem;
}
.arhive__list-item-category {
  margin-top: 2rem;
  margin-bottom: 4rem;
  font-size: 2rem;
  line-height: 110%;
  color: #9D9D9D;
  margin-bottom: 9rem;
}
.arhive__list-item-text {
  font-size: 2rem;
  line-height: 110%;
  color: #9D9D9D;
  margin-bottom: 9rem;
  max-width: 88rem;
}
.arhive__list-item-text ul, .arhive__list-item-text ol{
	list-style: disc;
	margin-left: 2rem;
}
.arhive__list-item-btn {
  background-color: #282828;
  font-size: 2rem;
  border-radius: 5rem;
  width: 40.4rem;
  height: 5.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
}
.arhive__list-item img {
  max-width: 81.4rem;
  width: 100%;
  height: auto;
	object-fit: cover;
}
.arhive__list-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none !important;
}

.contact {
  padding-top: 26rem;
  padding-bottom: 14rem;
  border-bottom: 0.2rem solid #282828;
}
.contact h1 {
  color: #000000;
  font-size: 4.4rem;
  margin-bottom: 4.4rem;
	text-align: start;
}
.contact p {
  padding-bottom: 1.5rem;
}
.contact .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact__content {
  display: flex;
  flex-direction: column;
}
.contact__content hr {
  margin-bottom: 2rem;
}
.contact__content a {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 100%;
  color: #888888;
}
.contact iframe {
  width: 50%;
}
@media(max-width: 767px){
	.contact h1{
		font-size: 3rem;
	}
	.contact .container{
		flex-direction:column;
		gap:2rem;
	}
	.contact iframe{
		width:100%;
	}
	.contact {
    padding-top: 10rem;
		padding-bottom: 6rem;}
}
.contact__content-social {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
}
.contact__content-social svg {
  width: 3.5rem;
}

.title-item {
  margin-top: 10rem;
	padding-left: 1rem;
	padding-right: 1rem;
}
.title-item h1 {
  font-size: 4.4rem;
  line-height: 109%;
  color: #000;
  text-align: start;
  font-weight: 400;
}
.title-item__btns {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.title-item__btns .btn {
  padding: 1.5rem 7.2rem;
  border-radius: 5rem;
  border: 0.2rem solid #282828;
  background-color: #282828;
  color: #ffffff;
  transition: 0.3s ease;
}
@media(max-width: 767px){
	.title-item__btns .btn{
		padding: 1.4rem 3rem;
		font-size: 1.4rem;
	}
	
}
.title-item__btns .btn.white {
  border: 0.2rem solid #282828;
  color: #000000;
  background-color: #FFF;
}
.title-item__btns .btn:hover {
  transform: scale(1.1);
}
.title-item .container {
  padding: 4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.title-item img {
  width: 100%;
  height: 74rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media(max-width: 767px){
	.title-item .container{
	align-items: flex-start;
	gap:  3rem;
}
	.title-item .container{
		flex-direction: column;
	}
	.title-item img{
		height:40rem;
	}
	.lines{
		height: 6rem;
	}
}


.numbers__content {
  border-top: 0.2rem solid #AAAAAA;
  border-bottom: 0.2rem solid #AAAAAA;
}
.numbers__content .container {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.numbers__content-item {
  text-align: center;
  padding: 3rem 0 4.5rem;
  flex: 1;
  position: relative;
}
.numbers__content-item p:first-child {
  font-size: 4.4rem;
  line-height: 110%;
  margin-bottom: 1rem;
}
.numbers__content-item p:last-child {
  font-size: 2rem;
  color: #9D9D9D;
}
.numbers__content-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 100%;
  width: 0.2rem;
  background-color: #AAAAAA;
}

.about-service__item {
  border-bottom: 0.2rem solid #aaaaaa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 0;
}
.about-service__item-title {
  font-size: 4.4rem;
  line-height: 110%;
}
.about-service__item-text {
  line-height: 110%;
  font-size: 2rem;
}

.price {
  border-top: 0.2rem solid #AAAAAA;
	margin-top: 5rem;
}
.price__top {
  display: flex;
  padding: 3rem 0;
}
.price__top img {
  max-width: 102rem;
}
.price__bottom-item {
  padding: 2.5rem 0;
  border-top: 0.2rem solid #AAAAAA;
  cursor: pointer;
}
.price__bottom-item-top {
  display: flex;
  align-items: center;
}
.price__bottom-item .answer {
  display: flex;
  gap: 1rem;
  font-size: 2rem;
  padding-top: 3rem;
}
.price__bottom-item .answer > div {
  margin-left: 20rem;
}
.price__bottom-item .answer img {
  max-width: 102rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.price__bottom-item .answer {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: height 0.45s ease, opacity 0.3s ease, transform 0.3s ease;
  padding-top: 0;
}
.price__bottom-item svg {
  transition: 0.3s ease;
}
.price__bottom-item.is-open .answer {
  opacity: 1;
  transform: translateY(0);
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}
.price__bottom-item.is-open svg {
  transform: rotate(90deg);
}
.price__bottom-item-title {
  margin-left: 14.6rem;
}
.price__bottom-item span {
  width: 5.4rem;
}
.price__bottom-item-title, .price__bottom-item span {
  font-size: 4.4rem;
  line-height: 100%;
}
.price__bottom-item:last-child {
  border-bottom: 0.2rem solid #AAAAAA;
}
.price__bottom svg {
  margin-left: auto;
  width: 2.8rem;
}

.page-service {
  padding-top: 16.5rem;
}
@media(max-width: 767px){
	.about-service__item-title, .price__bottom-item-title, .price__bottom-item span{
		font-size: 2.4rem;
	}
	.about-service__item-text{
		font-size: 1.6rem;
	}
	.price__top{
		flex-direction: column;
	}
	.numbers__content-item p:first-child{
		font-size: 2.4rem;
	}
	.numbers__content-item p:last-child{
		font-size: 1.6rem;
	}
}


.favorite {
  border-top: 0.2rem solid #AAAAAA;
  padding: 4.3rem 0 0;
}
.favorite .container {
  display: flex;
}

.favorite__left {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.favorite__left h2 {
  padding: 0;
}
.favorite__left .btn {
  background-color: #000;
  color: #fff;
  border-radius: 5rem;
  padding: 1.4rem 7.2rem;
  margin-top: auto;
}
.favorite__right img {
  max-width: 102rem;
}
@media(max-width: 767px){
	.favorite .container{
		flex-direction: column;
	}
	.favorite__right img {
  max-width: 100%;
}
	.services__arrows-prev svg, .services__arrows-next svg{
		width: 4rem;
	}
	.favorite__left{
		gap:2rem;
	}
	.favorite__left{
		margin-bottom:2rem;
	}
}

.mobile-nav, .burger {
  display: none;
}

@media (max-width: 767px) {
	.favorite__left .btn{
		padding:1.2rem 3rem;
		font-size:1.4rem;
	}
  h2 {
    font-size: 3.6rem;
  }
  .container {
    max-width: 100%;
    padding: 0 1.6rem;
    box-sizing: border-box;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
    background: rgba(40, 40, 40, 0.98);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    padding: 0.8rem 1.2rem;
  }
  .header > .container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0;
  }
  .header__logo {
    font-size: 3.8rem;
    padding: 0 4rem 0 0;
    letter-spacing: -0.12rem;
    white-space: nowrap;
  }
  .header__content-menu, .header__content-btns {
    display: none !important;
  }
  .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    height: 3.8rem;
    border-radius: 0.8rem;
    background: transparent;
    border: 0.12rem solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .burger__box {
    position: relative;
    width: 2.2rem;
    height: 1.4rem;
    display: inline-block;
  }
  .burger__line {
    position: absolute;
    left: 0;
    right: 0;
    height: 0.18rem;
    background: #fff;
    border-radius: 1rem;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }
  .burger__line--1 {
    top: 0;
  }
  .burger__line--2 {
    top: 50%;
    transform: translateY(-50%);
  }
  .burger__line--3 {
    bottom: 0;
  }
  .burger.is-open .burger__line--1 {
    transform: translateY(0.6rem) rotate(45deg);
  }
  .burger.is-open .burger__line--2 {
    opacity: 0;
  }
  .burger.is-open .burger__line--3 {
    transform: translateY(-0.6rem) rotate(-45deg);
  }
  .mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 1190;
  }
  .mobile-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    max-width: 420px;
    background: linear-gradient(180deg, rgba(40, 40, 40, 0.96), rgba(28, 28, 28, 0.96));
    color: #fff;
    transform: translateX(100%);
    transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.3, 1);
    z-index: 1200;
    padding: 2.4rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-nav.mobile-nav--open {
    transform: translateX(0);
  }
  .mobile-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .mobile-nav .burger--close {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 2.6rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
  }
  .mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
    padding-right: 0.4rem;
  }
  .mobile-nav__links a {
    display: block;
    padding: 1rem 1rem;
    border-radius: 0.8rem;
    font-size: 1.8rem;
    color: #fff;
    text-transform: uppercase;
    transition: background 0.14s;
    text-decoration: none;
  }
  .mobile-nav__links a:hover, .mobile-nav__links a:focus {
    background: rgba(255, 255, 255, 0.03);
    outline: none;
  }
  .mobile-nav__bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.4rem;
    border-radius: 2rem;
    font-size: 1.6rem;
    background: #fff;
    color: #282828;
    text-decoration: none;
  }
  .hero {
    padding-top: 7.8rem;
    min-height: calc(100vh - 7.8rem);
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .hero .container {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 6rem 0;
  }
  .hero h1 {
    font-size: 4.6rem;
    text-align: center;
    line-height: 1.08;
  }
  .hero .container .btn {
    width: 100%;
    max-width: 42rem;
    height: 5.2rem;
    border-radius: 5rem;
    font-size: 1.8rem;
	  margin: 0 1rem;
  }
  .bg-img {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .bg-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .faq .lines {
    height: 6rem;
  }
  .title .container {
    padding: 0 1rem;
  }
  .faq__list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem 0;
  }
  .faq__list-item .question {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
  }
	.faq__list-item.is-open .answer{
		flex-direction: column;
	}
	.faq__list-item .answer > div{
		margin-left:0;
	}
  .question__text {
    font-size: 2.4rem;
    text-transform: uppercase;
    flex: 1;
  }
  .question__podpis {
    font-size: 1.4rem;
    color: #9d9d9d;
  }
  .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, opacity 0.3s ease, padding 0.25s ease;
    padding: 0;
    opacity: 0;
  }
  .faq__list-item.is-open .answer {
    max-height: 60rem;
    padding-top: 1.6rem;
    opacity: 1;
  }
  .answer > div {
    font-size: 1.6rem;
    color: #6f6f6f;
    margin-bottom: 1rem;
  }
  .answer img {
    width: 100%;
    height: auto;
    border-radius: 0.6rem;
    display: block;
  }
  .services .title .container {
    align-items: center;
    gap: 1rem;
  }
  .services__arrows {
    display: flex;
    gap: 0.8rem;
    margin-left: auto;
  }
  .services__arrows-prev, .services__arrows-next {
    width: 7rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5rem;
  }
  .services__slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
    gap: 1rem;
    padding: 1rem 0;
    align-items: start;
  }
  .services__slider-item {
    background: #fff;
    border-radius: 0rem;
    overflow: hidden;
    border: 0.12rem solid #efefef;
    box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
  }
  .services__slider-item-img {
    height: 24rem;
  }
  .services__slider-item-img img {
	  border-radius:0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .services__slider-item-title {
    padding: 1rem;
    font-size: 2.2rem;
    font-weight: 500;
  }
  .services__slider-item-text {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 1rem 1rem;
    font-size: 1.6rem;
    color: #6f6f6f;
  }
  .advantages__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .advantages__list-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 0.8rem;
    border: 0.12rem solid #efefef;
    align-items: start;
  }
  .advantages__list-item > div {
    padding: 0;
	  gap: 1.5rem;
  }
  .advantages__list-item img {
    width: 100%;
    height: 20rem;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0.6rem;
  }
  .advantages__list-item-title {
    font-size: 2.2rem;
  }
  .advantages__list-item-text {
    font-size: 1.6rem;
    color: #6f6f6f;
    margin: 0.6rem 0;
  }
  .advantages__list-item .btn {
    width: -moz-max-content;
    width: max-content;
    padding: 0.8rem 1.6rem;
    border-radius: 2rem;
    background: #282828;
    color: #fff;
  }
  .about .container {
    display: grid;
    grid-template-columns: 1fr 32rem;
    gap: 1.2rem;
    align-items: center;
  }
  .about__left {
    font-size: 1.6rem;
    color: #6f6f6f;
  }
  .about__right img {
    width: 100%;
    height: auto;
    border-radius: 0.6rem;
  }
  .form-section .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .form-section h2 {
    font-size: 3.2rem;
  }
  .form-section__right form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .form-section input[type=text], .form-section input[type=tel], .form-section input[type=email] {
    padding: 1rem;
    font-size: 1.6rem;
    background: #fff;
  }
  .form-section input[type=file] {
    padding: 0.6rem;
  }
  .form-section input[type=submit].btn {
    margin-top: 0.4rem;
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 0.8rem;
    font-weight: 600;
    cursor: pointer;
  }
  .footer .container {
    display: flex;
	  flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
  }
  .footer__logo {
    font-size: 3.6rem;
  }
  .footer__menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 1.6rem;
  }
  .footer__dev {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 1.4rem;
    margin-top: 1rem;
  }
  img {
    display: block;
    border-radius: 0.6rem;
  }
  .btn {
    white-space: nowrap;
    touch-action: manipulation;
  }
	.page-service{
		padding-top: 6rem;
	}
	.about-service__item-title, .price__bottom-item-title, .price__bottom-item span{
		font-size:2rem;
	}
	.price__bottom svg{
		width: 1.4rem;
	}
	.price__bottom-item .answer > div{
		margin-left:0;
	}
	.price__bottom-item .answer{
		flex-direction: column;
	}
	.price__bottom-item-title{
		margin-left: 0;
	}
}
@media (max-width: 767px) and (max-width: 520px) {
  .advantages__list {
    grid-template-columns: 1fr;
  }
  .about .container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
	.about__left{
		margin-right:0;
		padding-bottom:0;
		font-size: 1.4rem;
	}
	.about__right {
    padding-bottom: 6rem;
    padding-top: 3rem;
    border-left: 0rem;
}
	.lines{
		height:6rem;
	}
	.advantages__list-item .btn, .advantages__list-item-text{
		font-size:1.4rem;
	}
	.advantages__list-item:first-child{
		border-right:0;
		border-top:0;
	}
	.advantages__list-item:last-child{
		 border-bottom: 0.2rem solid #aaa;
	}
	.advantages__list-item{
		border-radius:0;
		border:0;
		 border-top: 0.2rem solid #aaa;
	}
	       
	.services__arrows-prev, .services__arrows-next {
        width: 4.8rem;
        height: 3.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5rem;
    }
	.services__arrows-prev svg, .services__arrows-next svg{
		width: 3rem;
	}
	.services{
		margin-top:8rem;
	}
	.faq__list-item .question svg{
		width:1.6rem;
	}
	.faq__list-item .question__podpis, p{
		font-size:1.4rem;
	}
	.faq__list-item .question__podpis{
		width:100%;
	}
  .container {
    padding: 0 1rem;
  }
  .header {
    padding: 0.6rem 0;
  }
  .header__logo {
    font-size: 3rem;
    padding: 0 2rem 0 0;
  }
  .burger {
    width: 4.4rem;
    height: 3.6rem;
  }
  .hero {
    padding-top: 6.8rem;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2.4rem;
  }
  .hero .container .btn{
    height: 4.6rem;
    font-size: 1.6rem;
    border-radius: 5rem;
  }
	.hero .container{
		gap:6rem;
		padding-left:1rem;
		padding-right:1rem;
	}
	.container{
		padding-left:1rem!important;
		padding-right:1rem!important;
	}
	.faq__list-item .question{
		flex-wrap:wrap;
	}
  .services__slider {
    grid-template-columns: 1fr;
  }
  .services__slider-item-img {
    height: 21rem;
  }
  .services__slider-item-title {
    font-size: 2rem;
  }
  .services__slider-item-text {
    font-size: 1.4rem;
  }
  .advantages__list-item img {
        height: 20rem;
    }
  .advantages__list-item-title {
    font-size: 1.9rem;
  }
  .faq .question__text {
    font-size: 2.1rem;
  }
  .answer > div {
    font-size: 1.4rem;
  }
  .form-section h2 {
    font-size: 2.8rem;
  }
  .form-section input[type=text], .form-section input[type=tel], .form-section input[type=email] {
    font-size: 1.4rem;
    padding: 0.9rem;
  }
  .mobile-nav {
    max-width: 100%;
    padding: 1.6rem;
    height: 100vh;
  }
  .mobile-nav__links a {
    font-size: 1.6rem;
    padding: 0.9rem;
  }
  .mobile-btn {
    font-size: 1.6rem;
    padding: 0.9rem;
  }
  .footer__menu ul {
    gap: 0.6rem;
    font-size: 1.4rem;
  }
	.form-section__right{
		margin-top: 0;
	}
	.form-section__right form {
    margin-top: 2rem;
}
	.form-section__right form input[type=file] {
		        font-size: 1.4rem;
	}
	.form-section input[type=submit].btn{
		border-radius:5rem;
		font-size:1.6rem;
	}
	.footer{
		margin-top:6rem;
	}
	.services__slider{
		padding:0;
	}
.form-section__right form p {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}
	.faq__list-item:first-child .question{
		padding: 0 0 1rem 0;
	}
      .footer__logo {
        font-size: 5rem;
		      letter-spacing: -0.4rem;
    }
	.footer__dev{
		margin-top: 5rem;
		font-size:1.2rem;
		justify-content: center;
		        align-items: center;
	}
	    .faq__list-item .question {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        cursor: pointer;
    }
	.faq__list{
		gap: 0;
	}
	.faq__list-item .question{
		padding: 1rem 0;
	}
	.title-item h1{
		font-size: 3.4rem;
	}
	.numbers__content-item {
    width: 33%;
    text-align: center;
    padding: 2rem 0 2rem;
    flex: auto;
    position: relative;
}
	.numbers__content .container{
		flex-wrap: wrap;
	}
	.numbers__content-item:nth-child(3n)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 100%;
    width: 0.2rem;
    background-color: #AAAAAA;
}
	.numbers__content-item:nth-child(1)::before, .numbers__content-item:nth-child(4)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 100%;
    width: 0.2rem;
    background-color: #AAAAAA;
}
	
}

.services-grid__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(520px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
@media(max-width:600px){
	.services-grid__list{
		 grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	}
}

.services-grid__item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.services-grid__item:hover {
    transform: translateY(-5px);
}

.services-grid__item-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.services-grid__item-content {
    padding: 20px;
}

.services-grid__item-title {
    font-size: 4.4rem;
    margin-bottom: 1.2rem;
	line-height:100%;
    font-weight: 600;
}

.services-grid__item-description {
    color: #444;
	line-height:100%;
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.services-grid__item-price {
    font-weight: bold;
	line-height:100%;
    margin: 15px 0;
	font-size: 2rem;
    display: flex;
    gap: 8px;
}

@media(max-width:580px){
	.services-grid__item-title{
		font-size:3rem;
	}
	.services-grid__item-description {
		font-size:1.8rem;
	}
}
.price-label {
    color: #666;
}

.price-value {
    color: #e67e22;
}

.services-grid__item-btn {
    display: inline-block;
    background: #282828;
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.2s;
}

.services-grid__item-btn:hover {
    background: #3e3e3e;
}

.wpcf7-list-item {
	margin-left:0!important;
}
.wpcf7-list-item label{
	    display: flex;
    margin: 8px 0;
    justify-content: flex-start;
	align-items: center;
}

.wpcf7-list-item input{
 width:3rem!important;
	height:3rem;
	margin-left:0;
	margin-right:1rem;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
	font-size:1.8rem;
}
/*# sourceMappingURL=style.css.map */