/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a {
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

body {
  font-family: "stolzl";
  font-weight: 300;
  color: #000;
  font-size: 16px;
  background-color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}

.main {
  margin-top: 109px;
}

.header {
  padding: 15px 0 15px;
  position: fixed;
  width: 100%;
  z-index: 99;
  top: 0;
  left: 0;
  background: #fff;
}
.header__burger {
  display: none;
  width: 35px;
  flex-direction: column;
  padding: 5px 0;
  gap: 6px;
  margin-left: 10px;
}
.header__burger span {
  width: 100%;
  display: inline-block;
  background: #000;
  height: 2px;
  min-height: 2px;
  border-radius: 4px;
  transition: 200ms ease all;
  position: relative;
}
.header__burger--active span:nth-child(1) {
  transform: rotate(45deg);
  top: 7px;
}
.header__burger--active span:nth-child(2) {
  opacity: 0;
}
.header__burger--active span:nth-child(3) {
  transform: rotate(-45deg);
  top: -8px;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img {
  width: 80px;
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__contacts-item img {
  width: 46px;
  transition: 200ms ease all;
}
.header__contacts-item:hover img {
  transform: scale(1.1);
}
.header__contacts-tel {
  transition: 200ms ease all;
  margin-left: 10px;
  font-size: 18px;
  font-weight: 500;
}
.header__contacts-tel:hover {
  color: #455838;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
      border: 1px solid #ebebeb;
    padding: 10px 20px;
    border-radius: 18px;
}
.header__nav-item {
  transition: 200ms ease all;
  font-size: 20px;
  font-weight: 300;
}
.header__nav-item:hover {
  color: #455838;
}
.but {
	font-size: 16px;
    color: #fff;
    background-color: #084772;
    border-radius: 15px;
    padding: 15px 35px;
	transition: 200ms ease all;
	display: inline-block;
}
.but:hover {
    transform: scale(1.05);
}
.orange {
background-color: #f77f03;
}
.hero .but {
margin-right: 25px;
}
.hero .h_but {
    margin-top: 70px;
    margin-bottom: 50px;
}
.hero {
    padding-top: 35px;
}
.hero .h_zag {
font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}
.hero .h_txt {
    font-size: 20px;
}
.hero__container {
  display: flex;
  justify-content: space-between;
    background: url("../images/h_back.png") no-repeat;
     background-position: right bottom;
    background-size: contain;
}
.hero__info {
  padding: 35px 35px 35px 30px;
  background: #fff;
  border-radius: 20px;
}
.hero__left {
  max-width: 64%;
}
.hero__right {
  display: flex;
  align-items: flex-end;
}
.hero__title {
  font-size: 34px;
  font-weight: 500;
  padding-bottom: 15px;
}
.hero__desc {
  font-size: 24px;
}

.consult-btn {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  padding: 10px 35px;
  font-size: 28px;
  color: #fff;
  background: #455838;
  border-radius: 20px;
  transition: 200ms ease all;
  font-weight: 300;
}
.consult-btn:hover {
  background: #6d8f56;
}

.advantages {
      background-color: #f77f05;
	  background-image: url('/images/pattern.png');
	  background-size: 1100px;
}
.advantages .items {
    display: flex;
    justify-content: center;

}
.advantages .items img {
	height: 50px;
	    margin-bottom: 10px;
}
footer .msoc {
    display: flex;
    gap: 10px;
}
.advantages .items .item {
background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 30px 15px;;
    width: 25%;
	font-size: 14px;
	    padding: 10px;
	    padding-bottom: 15px;
}
.advantages__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
.advantages__item {
  display: flex;
  align-items: center;
  gap: 34px;
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0px 0px 26.97px 2.03px rgba(0, 0, 0, 0.16);
}
.advantages__item-holder {
  min-width: 100px;
  width: 100px;
  height: 100px;
  background: #dbdbcf;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantages__item-holder img {
  max-width: 100%;
}
.advantages__item-title {
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 10px;
  border-bottom: 2px solid #dbdbcf;
  margin-bottom: 14px;
}
.advantages__item-desc {
  font-size: 14px;
}
.uslugi .container {
padding: 35px 0;
}
.uslugi .items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 35px;
	margin-top: 25px;
}
.uslugi .items .item {
	width: 31.4%;
    padding: 25px 15px;
    border: 1px solid #f5f5f5;
    border-radius: 10px;
	box-shadow: 3px 3px 7px 0px #cccccc8c;
}
.uslugi .item .verh {
	display: flex;
    justify-content: space-between;
	    align-items: center;
	    border-bottom: 2px solid #000;
    padding-bottom: 12px;
	    margin-bottom: 15px;
}
.uslugi .item .verh .other{
	color: #808080;
    font-size: 11.5px;
    font-weight: 400;
}
.uslugi .item .niz {
	display: flex;
	justify-content: space-between;
}
.uslugi .item .verh .raz {
	font-size: 18px;
	    font-weight: 500;
}
.uslugi .item .verh .dva {
	font-size: 14px;
	background-color: #f1f1f1;
	border-radius: 10px;
	padding: 5px 15px;
}
.uslugi .item .opis {
	font-size: 15px;
	height: 120px;
}
.uslugi .item .cena {
background-color: #f77f05;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 18px;
}
.uslugi .item .header__contacts-item img {
    width: 46px;
}
    .header__logo img {
        max-width: 60px;
    }
h2.ntitle {
	font-size: 30px;
	font-weight: 500;
}
h2.ntitle:before {
content: '';
    width: 40px;
    height: 10px;
    background-color: #f77f05;
    display: block;
    float: left;
    margin-top: 13px;
    border-radius: 4.5px;
    margin-right: 18px;
}
.about .container {
    padding: 45px 0;
}
.about .items {
display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin-top: 25px;
	position: relative;
}
.about .items .item {
width: 30.1%;
    padding: 25px 15px 25px 25px;
    border: 1px solid #f5f5f5;
    border-radius: 10px;
    box-shadow: 3px 3px 7px 0px #cccccc8c;
	    display: flex;
}
.about .items .item .cifr {
	color: #bbd4e5;
	font-size: 90px;
	font-weight: 500;
	line-height: 70px;
	    margin-right: 25px;
}
.review .items {
	margin-top: 20px;
}
.slick-slider .slick-list{
margin: 0px 50px;
    padding: 0 !important;
}
.slick-slider .slick-arrow {
position: absolute;
top:0;
bottom:0;
}
.slick-slider .slick-prev{
left: -10px;
}
.slick-slider .slick-next{
right: -10px;
}
.review .slick-slider .slick-track {
display: flex;
gap: 10px;
}
.review .slick-slider .slick-track a {
display: block;
    height: 215px;
    overflow: hidden;
	border-radius: 10px;
    border: 1px solid #ccc;
	    margin-bottom: 10px;
}
.review .slick-slider .slick-track a img {
transition: 200ms ease all;
}
/*.review .slick-slider .slick-track a:hover img {
transform: scale(1.05);
}*/
.review>.container {
padding-bottom: 30px;
}
.primery .items {
	margin-top: 20px;
}
/*.primery .slick-slider .slick-track a:hover {
transform: scale(1.05);
}*/
.primery .slick-slider .slick-track a {
    height: 320px;
    display: block;
    border-radius: 10px;
    border: 1px solid #ccc;
    overflow: hidden;
	transition: 200ms ease all;
}
.primery .slick-slider .slick-track {
display: flex;
gap: 10px;
}
.primery>.container {
    padding-bottom: 40px;
}
.faq .items {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.faq .items>div {
	width: 50%;
}
.faq .items .left .zag {
    background-color: #bbd4e5;
    padding: 15px 20px;
    border-radius: 10px;
	display: flex;
    align-items: center;
	margin-bottom: 10px;
	    margin-top: 20px;
	width: fit-content;
}
.faq .items .left .zag img {
    margin-right: 10px;
}
.faq>.container {
margin-bottom: 40px;
}
.accordion {
  width: 100%;
  max-width: 800px;
}
.accordion__item {
    border-radius: 10px;
    background-color: #f8f8f8;
}
.accordion__item + .accordion__item {
  margin-top: 10px;
}

.accordion__button {
  position: relative;
  display: block;
  padding: 12px 52px 12px 28px;
  border-radius: 10px;
  background-color: #f8f8f8;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.accordion__button:hover {
  background-color: #e0e0e0;
}

.accordion__button::after {
  content: "+";
  position: absolute;
  top: 48%;
  right: 18px;
  transform: translateY(-50%);
  font-size: 32px;
  font-weight: 200;
  transition: transform 0.3s ease;
}

.accordion__item.accordion__item--opened .accordion__button::after {
  content: "−";
}

.accordion__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  background-color: #f8f8f8;
  border-radius: 10px;
}

.accordion__content {
  padding: 5px 28px 16px 28px;
  font-size: 15px;
}

.accordion__content > * {
  margin-bottom: 12px;
}

.accordion__content > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .accordion__button {
    padding: 14px 44px 14px 20px;
    font-size: 16px;
  }

  .accordion__button::after {
    right: 20px;
  }

  .accordion__content {
    padding: 14px 20px;
    font-size: 14px;
  }

  .accordion__content > * {
    margin-bottom: 10px;
  }

  .accordion__item + .accordion__item {
    margin-top: 10px;
  }
}
.faq .feedback__form {
    background: #084772;
    max-width: 100%;
    border-radius: 20px;
    padding: 30px;
	margin-top: 20px;
}
.faq .feedback__form-title {
    font-size: 30px;
    color: #ffffff;
    font-weight: 500;
    padding-bottom: 10px;
}
.faq .feedback__form-desc {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding-bottom: 25px;
}
.faq .form-group__title {
    color: #fff;
}
.faq .input__field {
    color: #ffffff;
    font-size: 14px;
    border-bottom: none;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 10px;
    max-width: 370px;
}
.faq  input::placeholder {
  color: #fff;
}
.faq .form-group {
    margin-bottom: 10px;
}
.faq .form-group__title span {
    color: #fff;
}
.faq .form-note {
    color: #fff;
    font-size: 10px;
    font-weight: 300;
    margin-bottom: 15px;
    margin-top: 20px;
}
.faq .form-submit {
    padding: 15px 25px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: 200ms ease all;
    background-color: #f77f02 !important;
    border-radius: 15px;
}
.faq .form-submit:hover {
    background-color: #f77f05 !important;
	transform: scale(1.05);
}
.faq .form-submit-holder {
    text-align: left;
}
.faq .form-note a {
    color: #f77f02;
}
.oplata {
    padding-bottom: 40px;
}
.oplata .items {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    margin-top: 25px;
}
.oplata .items .item {
	width: 30%;
    padding: 20px;
    border: 1px solid #f5f5f5;
    border-radius: 10px;
    box-shadow: 3px 3px 7px 0px #cccccc8c;
    height: 200px;
}
.oplata .items .item.right {
	width: 70%;
}
.oplata .items img {
    max-height: 65px;
	margin-top: 40px;
}
.oplata .items .banks img {
	max-height: 45px;
	margin-top: 0px;
}
.oplata .items .banks {
margin-top: 50px;
display: flex;
    align-items: center;
    justify-content: space-between;
}
.oplata .items .banks>div {
font-size: 18px;
    font-weight: 500;
    margin-top: -5px;
}
.oplata .zag {
    font-size: 18px;
    font-weight: 500;
}
footer .header__contacts-item img {
    width: 46px;
}
footer .top {
display: flex;
    justify-content: center;
}
footer .top .email {
background-color: #bbd4e5;
    border-radius: 10px;
    height: 46px;
    padding: 0 15px;
    display: flex;
    align-items: center;
	font-size: 15px;
	    margin-left: 10px;
	transition: 200ms ease all;
}
footer .top .email:hover {
transform: scale(1.05);
}
footer .top .email img {
margin-right: 15px;
}
footer .top .zaya {
background-color: #f77f02;
    border-radius: 10px;
    height: 46px;
    padding: 0 30px;
    display: flex;
    align-items: center;
	font-size: 15px;
	    margin-left: 10px;
	transition: 200ms ease all;
	color: #fff;
	transition: 200ms ease all;
}
footer .top .zaya:hover {
transform: scale(1.05);
}
.title {
  position: relative;
  font-size: 30px;
  font-weight: 400;
  padding: 20px 20px 15px;
  background: #a5b294;
  display: inline-block;
  border-radius: 0 10px 10px 0;
  margin-bottom: 40px;
}
.title span {
  position: relative;
  z-index: 2;
}
.title::before {
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  right: 10px;
  top: 0;
  background: #a5b294;
}

.feedback {
  background: url("../images/feedback.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}
.feedback__container {
  display: flex;
  gap: 40px;
}
.feedback__group {
  display: flex;
  align-items: center;
  gap: 40px;
}
.feedback__form {
  background: #fff;
  max-width: 320px;
  border-radius: 15px;
  padding: 20px;
}
.feedback__form-title {
  font-size: 24px;
  color: #455838;
  font-weight: 500;
  padding-bottom: 10px;
}
.feedback__form-desc {
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 25px;
}
.feedback__img-holder img {
  min-width: 380px;
}
.feedback__title {
  font-weight: 600;
  color: #fff;
  font-size: 35px;
  margin-bottom: 20px;
}
.feedback__desc {
  color: #fff;
  font-size: 30px;
}

.form-group {
  margin-bottom: 25px;
}
.form-group .form-group-help {
  display: none;
}
.form-group__title {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
}
.form-group__title span {
  color: #f65959;
}

.input__field {
  color: #000;
  font-size: 14px;
  padding: 0 0 5px;
  border-bottom: 1px solid #b1b1b1;
  width: 100%;
}
.input__field::-webkit-input-placeholder {
  font-weight: 300;
}

.form-note {
  font-size: 11px;
  font-weight: 200;
  margin-bottom: 15px;
}
.form-note a {
  color: #6d8f56;
  text-decoration: underline;
}

.form-submit {
  padding: 10px 25px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  cursor: pointer;
  transition: 200ms ease all;
  background-color: #455838 !important;
  border-radius: 7px;
}
.form-submit:hover {
  background-color: #6d8f56 !important;
}

.form-submit-holder {
  text-align: center;
}

.works {
  padding-top: 40px;
}
.works__groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
}
.works__group {
  display: grid;
  grid-column-gap: 15px;
  grid-row-gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.works__grid img {
  width: 100%;
  height: 70.56px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 7px;
  transition: 200ms ease all;
}
.works__grid a {
  display: block;
}
.works__grid a:hover img {
  transform: scale(1.1);
}
.works__main {
  position: relative;
}
.works__main img {
  width: 100%;
  height: 224px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 7px;
}
.works__main span {
  position: absolute;
  bottom: 0;
  display: inline-block;
  z-index: 2;
  left: 0;
  width: 100%;
  padding: 18px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  border-radius: 0 0 7px 7px;
}

.features {
  padding-top: 60px;
}
.features__title {
  text-align: center;
  padding-bottom: 40px;
  font-size: 30px;
  font-weight: 400;
}
.features__groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.features__group {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 26.97px 2.03px rgba(0, 0, 0, 0.16);
  background: #fff;
  border-radius: 20px;
  padding: 40px 24px;
  gap: 20px;
}
.features__group-title {
  font-size: 24px;
  color: #31b64d;
  font-weight: 500;
  padding-bottom: 35px;
  text-align: center;
}
.features__group span {
  display: block;
  position: relative;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  gap: 10px;
}
.features__group span::before {
  content: url("../images/f-check.png");
  padding-right: 5px;
}
.features__group--bad .features__group-title {
  color: #f33644;
}
.features__group--bad span::before {
  content: url("../images/f-close.png");
}

.prices {
  padding-top: 45px;
  padding-bottom: 45px;
}
.prices__groups {
  display: flex;
  gap: 100px;
}
.prices__title {
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 15px;
}
.prices__value {
  display: inline-block;
  background: #455838;
  border-radius: 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  padding: 5px 18px;
}
.prices__desc {
  margin-top: 30px;
  font-size: 18px;
}
.prices .feedback__form {
  max-width: 530px;
  min-width: 530px;
  border-radius: 10px;
  box-shadow: 0px 0px 26.97px 2.03px rgba(0, 0, 0, 0.16);
}
.prices .feedback__form .form-groups {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.prices .feedback__form .form-group {
  margin: 0;
  flex: 1;
}
.prices .feedback__form .feedback__form-title {
  font-size: 16px;
  font-weight: 500;
}
.prices .feedback__form .form-submit-holder {
  text-align: left;
  margin: 20px 0 15px;
}
.prices__photos {
  padding-top: 40px;
}
.prices__photos-title {
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  padding-bottom: 40px;
}
.prices__photos-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.stock {
  background: url("../images/stock_back.jpg") no-repeat;
  background-position: center;
      background-position-y: 63%;
  padding: 40px 0;
  background-color: #000000a8;
    background-blend-mode: color;
}
.stock .info {
      color: #fff;
	      max-width: 800px;
	    margin-bottom: 40px;
}
.stock .info h2 {
font-size: 35px;
    font-weight: 500;
    padding-bottom: 10px;
}
.stock .info .opis {
font-size: 16px;
}
.stock__info-title {
  font-size: 30px;
  color: #455838;
  font-weight: 400;
  margin-bottom: 20px;
}
.stock__info-desc {
  font-size: 24px;
}
.stock__groups {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.stock__group {
  width: 100%;
  max-width: 680px;
}

.date-container {
display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.date__group {
  text-align: center;
}
.date__group span {
  font-size: 16px;
  display: inline-flex;
  padding-top: 10px;
  color: #fff;
}

.date__time {
  font-size: 70px;
  border-radius: 10px;
  font-weight: 500;
  background: #fff;
  color: #000;
  padding: 10px;
  min-width: 120px;
}

.date-container .divider {
  font-size: 60px;
  position: relative;
  top: -20px;
  color: #fff;
}

.date__item {
  font-size: 60px;
  border-radius: 10px;
  font-weight: 500;
  background: #fff;
  color: #084772;
  padding: 10px;
  min-width: 120px;
}
.stock .podarok {
	    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: -10px;
}
.stock .podarok>a {
	    padding: 15px;
}
.invest {
  padding-top: 45px;
}
.invest__info {
  padding-bottom: 45px;
}
.invest__box {
  padding-left: 45px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 26.97px 2.03px rgba(0, 0, 0, 0.16);
  padding-top: 15px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 70px;
}
.invest__desc {
  font-size: 20px;
  font-weight: 200;
  padding-top: 10px;
  padding-bottom: 30px;
}
.invest__img {
  width: 100%;
  max-width: 466px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
.invest__items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.invest__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 400;
}
.invest__item::before {
  content: url("../images/f-check.png");
}
.invest__features {
  display: inline-flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.invest__features-box {
  display: inline-flex;
  gap: 30px;
  margin-top: 30px;
}
.invest__feature {
  background: #d6e0c9;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}
.invest__feature-icon-holder {
  height: 35px;
  text-align: center;
  margin-bottom: 10px;
}
.invest__feature-title {
  font-size: 16px;
  font-weight: 200;
  text-align: center;
}
.invest__feature-title span {
  display: block;
  font-weight: 400;
}

.btn {
  padding: 10px 25px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  transition: 200ms ease all;
  background-color: #455838;
  border-radius: 7px;
}
.btn:hover {
  background-color: #6d8f56;
}

.reviews {
  padding-top: 45px;
  padding-bottom: 60px;
}
.reviews__videos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
  margin-bottom: 40px;
}
/*****mycss*****/
.object .back {
	width: 160px;
    background-color: #455838;
    height: 40px;
    border-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    margin: 20px auto 0 auto;
}
.object .advantages__items.gallery {
    display: block;
}
.object .advantages__items.gallery .works__grid {
    grid-template-columns: repeat(5, 1fr);
}
.object .advantages__items.gallery .works__grid img {
    height: 120px;
}
.f_objects .cont {
	display: flex;
	align-items: center;
}
.footer.f_objects {
    padding-top: 40px;
}
.footer.f_objects .header__contacts-tel {
    margin: 0;
	margin-left: 20px;
}
.f_objects .footer__btn {
    margin-top: 0;
}
.footer.f_objects .footer__line {
    padding-bottom: 20px;
}
.objects .works {
    padding-bottom: 0px;
	padding-top: 0px;
}
.objects .advantages__items.gallery {
	display: block;
}
.objects  .cams {
	display: flex;
}
.objects  .cams .item {
	height: 240px;
	position: relative;
	margin: 0 10px;
}
.objects  .cams .item a:hover span {
	background-color: #000000a3;
	transition: 200ms ease all;
}
.objects  .cams .item img {
	width: 100%;
    height: 240px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 20px;
}
.objects .slick-arrow {
	width: 200px;
}
.objects .otitle {
	position: absolute;
    bottom: 0;
    height: 70px;
    background: #000000a6;
    color: #fff;
    width: 100%;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.objects .cams .item span {
	background-color: #0000007a;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
	transition: 200ms ease all;
}
.objects  .cams .item span:before {
content: "";
    background: url(https://novostroyirk.ru/images/play.png);
    width: 100%;
    height: 100%;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
}
.objects .arch .year {
	width: 160px;
    background-color: #455838;
    height: 40px;
    border-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    margin-right: 40px;
}
.objects .arch {
	display: flex;
	margin-bottom: 40px;
}
.objects .arch .archive {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
	width: 100%;
}
.objects .arch .archive .item {
	position: relative;
}
.objects .works__groups {
	display: block;
}
.objects .arch .archive .item img {
    width: 100%;
    height: 160px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 6px;
}
.objects .arch .archive .item .otitle {
	position: absolute;
    bottom: 0;
    height: 35px;
    background: #000000c7;
    color: #fff;
    width: 100%;
    border-radius: 0 0 6px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.objects .arch .archive .item a span {
	transition: 200ms ease all;
}
.objects .arch .archive .item a:hover span {
	background-color: #00000091;
	display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 6px;
	transition: 200ms ease all;
}
.g_objects {
	padding-top: 40px;
}
.g_objects  .g_cams {
	display: flex;
	height: 27vw;
}
.g_objects  .g_cams .item {
	height: 80%;
	position: relative;
	margin: 0 0.4%;
	transition: 200ms ease all;
}
.g_objects  .g_cams .item a:hover span.play {
	background-color: #000000a3;
	transition: 200ms ease all;
}
.g_objects  .g_cams .item img {
	width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 30px;
	transition: 200ms ease all;
}
.g_objects .slick-arrow {
	width: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 9;
}
.g_objects .slick-arrow.slick-prev {
	transform: translateX(-24.5vw);
}
.g_objects .slick-arrow.slick-next {
	transform: translateX(24.5vw);
}
.g_objects .g_cams .item span.play {
	background-color: #0000007a;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
	transition: 200ms ease all;
}
.g_objects .g_cams .item span.play:before {
content: "";
    background: url(https://novostroyirk.ru/images/play.png);
    width: 100%;
    height: 100%;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
}
.g_objects .g_cams .slick-track {
	display: flex;
    align-items: center;
	height: 100%;
}
.g_objects .g_cams .slick-center.slick-current {
	height: 100%;
	transition: 200ms ease all;
	/*width: 800px;
	margin: 0 90px;*/
}
.g_objects .g_cams .item.slick-center.slick-current img {
    height: 100%;
	transition: 200ms ease all;
}
.g_objects .watch {
	width: 210px;
    background-color: #455838;
    height: 56px;
    border-radius: 6px;
    color: #fff;
    display: flex;
    font-size: 24px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: 10px;
    font-weight: 400;
}
.g_objects .onair {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #fff;
    background-color: #ff0000;
    font-size: 20px;
    border-radius: 21px;
    padding: 3px 10px;
    display: flex;
    align-items: center;
}
.g_objects .onair span {
    font-size: 26px;
    margin-right: 8px;
	animation: css-animation-blink 1.3s infinite;
}
@keyframes css-animation-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@media screen and (max-width: 768px){
.uslugi .soc.header__contacts {
    justify-content: center;
	gap: 10px;
}
.stock {
    padding: 20px 0 40px 0;
}
.stock .info h2 {
    text-align: center;
    font-size: 24px;
}
.spasibo>.container {
    min-height: auto !important;
    margin-top: 100px;
    margin-bottom: 30px;
    text-align: center;
}
.privacy .items {
    margin-top: 100px !important;
}
.privacy .feedback__privacy .input__field.feedback-name-privacy {
    width: 100% !important;
}
.blocker {
    padding-top: 15px !important;
	        padding: 0;
}
.modal {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-right: 10px !important;
    padding-left: 10px !important;
}
.modal .feedback__form-title {
    font-size: 24px !important;
}
footer .middle {
    gap: 20px !important;
    text-align: center;
}
footer .top .zaya {
    margin-left: 0;
}
footer .top .email {
    margin-left: 0;
}
footer .soc.header__contacts {
	gap: 10px;
}
.oplata .items .banks {
        gap: 20px;
    }
.oplata .items {
    gap: 20px;
}
.oplata .items .item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
.faq .feedback__form {
    padding: 15px;
}
.faq .form-submit-holder {
    text-align: center;
}
.faq .feedback__form-title {
    font-size: 20px;
}
.faq .items>div {
    width: 100%;
}
.faq .items {
    gap: 0px;
}
h2.ntitle {
    font-size: 24px;
}
section.about {
padding: 0 10px;
}
section.primery>.container {
padding: 0 10px;
}
section.faq>.container {
padding: 0 10px;
}
section.oplata>.container {
padding: 0 10px;
}
.about .items .item {
    width: 100%;
}
.about .items {
gap: 20px;
}
.primery .slick-slider .slick-track a {
    height: auto;
}
.review__container.container{
padding-left: 10px;
        padding-right: 10px;
}
.uslugi .item .niz {
    flex-direction: column;
    gap: 15px;
}
.uslugi .item .cena {
width: 100%;
    text-align: center;
}
.uslugi .item .niz a {
    text-align: center;
}
.uslugi .item .opis {
    height: auto;
    margin-bottom: 15px;
}
.uslugi .item .verh .raz {
    margin-bottom: 8px;
}
.uslugi .items .item {
    width: 100%;
}
.uslugi .item .verh {
    flex-direction: column;
}
section.uslugi {
padding: 0 10px;
}
.hero .h_but {
    margin-top: 20px;
    margin-bottom: 0;
	display: flex;
	    flex-direction: column;
    gap: 15px;
    align-items: center;
}
.hero .but {
    margin-right: 0;
}
.hero__container {
    background: none;
}
.g_objects .watch {
    margin-top: -20px;
}
.g_objects .slick-arrow {
    width: 200px;
    position: initial;
}
.g_objects .slick-arrow.slick-prev {
    transform: none;
}
.g_objects .slick-arrow.slick-next {
    transform: none;
}
.g_objects .g_cams {
    height: auto;
	margin-top: -26px;
}
.object .advantages__items.gallery .works__grid {
	grid-template-columns: repeat(2, 1fr);
}
.objects .arch {
    flex-direction: column;
}
.objects .arch .year {
    margin-bottom: 10px;
}
.objects .arch .archive {
    grid-template-columns: repeat(2, 1fr);
}
.objects .arch .archive .item .otitle {
    font-size: 14px;
}
}
/*****endmycss*****/
@media (max-width: 767px) {
  .reviews__videos {
    grid-template-columns: repeat(2, 1fr);
  }
}
.reviews__video {
  border-radius: 10px;
  height: 200px;
}
.reviews__video iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.reviews__slider-container {
  padding: 0 130px;
  display: flex;
  align-items: center;
  gap: 50px;
}
.reviews__slider-box {
  overflow: hidden;
  padding-left: 100px;
}
.reviews .swiper__left img,
.reviews .swiper__right img {
  width: 30px;
  min-width: 30px;
}
.reviews__slide {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 20px 20px 20px 0;
  border-radius: 20px;
  border: 1px solid rgb(191, 191, 191);
  min-height: 240px;
}
.reviews__slide-quote {
  text-align: right;
  margin-bottom: 15px;
}
.reviews__slide-name {
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 15px;
}
.reviews__slide-text {
  font-size: 16px;
  padding-bottom: 20px;
}
.reviews__slide-date {
  font-size: 16px;
}
.reviews__slide-avatar-holder {
  min-width: 200px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid #bfbfbf;
  padding: 7px;
  margin-left: -100px;
}
.reviews__slide-avatar-holder img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal .feedback__form {
    max-width: 100%;
	display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
	padding:0;
}
.modal .feedback__form-desc {
    font-size: 16px;
}
.modal .form-group__title span {
    color: #000;
}
.modal .form-note {
    font-size: 10px;
}
.modal .form-note a {
    color: #f77f03;
}
.modal .input__field {
	/*color: #c3c3c3;*/
    font-size: 14px;
    border-bottom: none;
    width: 235px;
    border: 1px solid #c3c3c3;
    border-radius: 10px;
    padding: 10px;
}
.modal .feedback__form-title {
    font-size: 30px;
    color: #000000;
    font-weight: 500;
    padding-bottom: 10px;
}
.modal .form-submit {
    padding: 15px 30px;
    font-size: 16px;
    background-color: #f77f03 !important;
    border-radius: 15px;
	transition: 200ms ease all;
}
.modal .form-submit:hover {
  transform: scale(1.1);
}
.modal .txt {
    background-color: #bbd4e5;
    font-weight: 400;
    padding: 13px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
	    margin-bottom: 15px;
}
.modal .txt img {
    margin-right: 15px;
}
.cookie-alert {
position: fixed;
    bottom: 30px;
    right: 30px;
    width: 420px;
    z-index: 10;
    background: #084772;
    padding: 20px 40px;
    color: #fff;
    border-radius: 18px;
}
.cookie-alert p {
    display: block;
    width: 100%;
}
.cookie-alert p>a {
	text-decoration: underline;
}
.cookie-alert a.accept-cookie {
color: #FFF;
    background-color: #f77f02;
    border-radius: 10px;
    height: 46px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    transition: 200ms ease all;
    width: fit-content;
    margin-top: 20px;
    font-size: 14px;
}
.cookie-alert a.accept-cookie:hover {
transform: scale(1.1);
}
.spasibo>.container {
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 450px;
    justify-content: center;

}
.spasibo .ico {
width: 95px;
    margin-bottom: 20px;
}
.spasibo .zag {
	font-size: 30px;
    font-weight: 600;
    color: #f77f02;
    margin-bottom: 10px;
}
.privacy .items {
display: flex;
    flex-direction: column;
    margin-top: 144px;
	    margin-bottom: 35px;
}
.privacy .items a {
font-size: 13px;
    color: #8e8e8e;
    text-decoration: underline;
	    margin-bottom: 15px;
}
.privacy .feedback__privacy {
padding: 0;
    margin-top: 10px;
}
.privacy .feedback__privacy .input__field.feedback-name-privacy{
font-size: 14px;
    border-bottom: none;
    width: 370px;
    border: 1px solid #c3c3c3;
    border-radius: 10px;
    padding: 10px;
}
.privacy .feedback__privacy .form-group__title span {
    color: #000;
}
.privacy .feedback__privacy .form-group {
    margin-bottom: 15px;
}
.privacy .feedback__privacy .form-submit {
color: #FFF;
    background-color: #f77f02 !important;
    border-radius: 10px;
    height: 46px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    transition: 200ms ease all;
    width: fit-content;
    margin-top: 10px;
    font-size: 14px;
}
.privacy .feedback__privacy .form-submit:hover {
transform: scale(1.1);
}
.privacy .feedback__privacy .form-submit-holder {
    text-align: left;
}
.footer__logo {
  max-width: 158px;
}
.footer__box {
  border-top: 3px solid #455838;
  padding-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
}
.footer__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer .header__contacts-tel {
  margin: 30px 0 20px;
}
.footer__btn {
  margin-top: 15px;
}
.footer__title {
  font-size: 24px;
  color: #455838;
  padding-bottom: 30px;
  font-weight: 400;
}
.footer__items {
  font-size: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.footer__items a {
  text-decoration: underline;
}
.footer__items a:hover {
  text-decoration: none;
}
.footer__desc {
  max-width: 290px;
  font-size: 18px;
}
.footer__line {
  padding-bottom: 27px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.footer__line .copyright {
  font-size: 16px;
  font-weight: 300;
}
.footer__line .politic {
  color: #656565;
  font-size: 16px;
  font-weight: 200;
  text-decoration: underline;
}
.footer__line .politic:hover {
  text-decoration: none;
}
.footer__line .develop {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
}
footer .middle a {
	font-size: 13px;
	color: #8e8e8e;
	    text-decoration: underline;
}
footer .middle {
display: flex;
    justify-content: center;
    gap: 50px;
	margin-top: 24px;
    margin-bottom: -8px;
}
.footer__line .develop a {
  display: inline-block;
  margin: 0 5px;
  text-decoration: underline;
}
.footer__line .develop a:hover {
  text-decoration: none;
}
.footer__line .develop img {
  position: relative;
  top: -1px;
}

.blocker {
  z-index: 99;
}

@media (max-width: 1365px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  body {
    font-size: 14px;
  }
  .prices__photo {
    width: 20%;
  }
}
@media (max-width: 1199px) {
  .header__nav {
    padding-top: 15px;
  }
  .header__nav-item {
    font-size: 18px;
  }
  .hero__title {
    font-size: 28px;
  }
  .hero__desc {
    font-size: 20px;
  }
  .hero__left {
    padding-bottom: 110px;
  }
  .consult-btn {
    font-size: 20px;
    gap: 20px;
  }
  .consult-btn img {
    max-width: 38px;
  }
  .advantages__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .feedback__img-holder {
    display: none;
  }
  .feedback__group {
    padding: 40px 0;
  }
  .invest__img {
    max-width: 30%;
  }
  .reviews__slider-container {
    padding: 0 50px;
  }
  .footer__line {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer__box {
    gap: 20px;
  }
  .footer__title {
    font-size: 20px;
  }
  .footer__items {
    font-size: 16px;
  }
  .footer__desc {
    font-size: 16px;
    max-width: 250px;
  }
  .main {
    margin-top: 123px;
  }
}
@media (max-width: 989px) {
  .header__logo img {
    max-width: 120px;
  }
  .header {
    padding: 15px 0;
  }
  .header__contacts-item img {
    width: 30px;
  }
  .cookie-alert {
    position: fixed;
    bottom: 10px;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: #084772;
    padding: 20px;
    color: #fff;
    border-radius: 18px;
}
  .header__contacts-tel {
    font-size: 16px;
  }
  .main {
    margin-top: 93px;
  }
  .hero__title {
    font-size: 22px;
  }
  .hero__desc {
    font-size: 16px;
  }
  .consult-btn {
    font-size: 16px;
    gap: 10px;
    padding: 8px 22px;
    border-radius: 14px;
  }
  .consult-btn img {
    max-width: 30px;
  }
  .hero__left {
    padding-bottom: 80px;
  }
  .advantages__items {
    gap: 20px;
  }
  .title {
    font-size: 24px;
    padding: 15px;
  }
  .feedback__title {
    font-size: 30px;
  }
  .feedback__desc {
    font-size: 22px;
  }
  .features__title,
  .prices__photos-title {
    font-size: 26px;
  }
  .stock__groups {
    flex-direction: column;
  }
  .prices__groups {
    flex-direction: column;
    gap: 30px;
  }
  .prices__arrow {
    max-width: 28px;
  }
  .stock__info-title {
    font-size: 24px;
  }
  .stock__info-desc {
    font-size: 16px;
  }
  .date__item {
    min-width: 100px;
    font-size: 48px;
  }
  .date-container {
    justify-content: center;
  }
  .invest__img {
    display: none;
  }
  .invest__desc {
    font-size: 18px;
  }
  .invest__item {
    font-size: 18px;
  }
  .reviews__slider-container {
    padding: 0;
  }
  .reviews .swiper__left img,
  .reviews .swiper__right img {
    width: 15px;
    min-width: 15px;
  }
  .reviews__slide-avatar-holder {
    width: 100px;
    height: 100px;
    min-width: 100px;
    margin-left: -50px;
  }
  .reviews__slider-box {
    padding-left: 50px;
  }
  .reviews__slide-icon {
    width: 30px;
  }
  .reviews__slide-name {
    font-size: 18px;
  }
  .reviews__slide-text,
  .reviews__slide-date {
    font-size: 14px;
  }
  .footer__box {
    flex-wrap: wrap;
  }
  .footer__desc {
    max-width: 100%;
    width: 100%;
  }
  .footer__title {
    font-size: 16px;
    padding-bottom: 15px;
  }
  .footer .header__contacts-tel {
    margin: 15px 0;
  }
  .footer__items {
    font-size: 14px;
  }
  .footer__line .copyright,
  .footer__line .politic,
  .footer__line .develop {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    display: none;
  }
  .main {
    margin-top: 58px;
  }
  .header--active .header__nav {
    display: flex;
    position: absolute;
    left: 0;
    top: 90px;
    background: #fff;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: flex-start;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-top: 15px;
  }
  .header--active .header__nav .header__nav-item {
    font-size: 16px;
  }
  .oplata .items {
    flex-direction: column;
}
.hero__left {
    max-width: 100%;
}
.hero .h_zag {
    font-size: 18px;
}
.hero .h_txt {
    font-size: 14px;
}
.oplata .items .item {
    width: 100%;
	    height: auto;
}
.about .items {
    flex-direction: column;
}
.advantages .items {
    flex-direction: column;
	        align-items: center;
	        padding: 30px 0;
}
.advantages .items .item {
    margin: 10px;
    width: 100%;
}
footer .middle {
    flex-direction: column;
}
footer .soc.header__contacts {
    flex-direction: column;
}
.uslugi .items {
    flex-direction: column;
}
.faq .items {
    flex-direction: column;
}
.oplata .items .item.right {
    width: 100%;
}
.oplata .items .banks {
    flex-direction: column;
}
  .hero {
    padding-top: 45px;
    padding-bottom: 0px;
  }
  .hero__container {
    flex-direction: column;
  }
  .hero__left {
    padding-bottom: 40px;
  }
  .advantages__items {
    grid-template-columns: repeat(1, 1fr);
  }
  .feedback__group {
    flex-direction: column;
  }
  .works__groups {
    grid-template-columns: repeat(1, 1fr);
  }
  .features__groups {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }
  .features__group-title {
    font-size: 20px;
    padding-bottom: 20px;
  }
  .prices .feedback__form {
    width: 100%;
    min-width: 100%;
  }
  .features__title,
  .prices__photos-title {
    font-size: 20px;
  }
  .prices__photos-items {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .prices__photo {
    width: 50%;
  }
  .prices__arrow {
    max-width: 18px;
    transform: rotate(90deg);
  }
  .stock__info-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .stock__info-desc {
    font-size: 16px;
  }
  .date-container {
    gap: 10px;
  }
  .date__item {
    font-size: 30px;
    min-width: 70px;
    width: 70px;
  }
  .date-container .divider {
    font-size: 40px;
  }
  .date__group span {
    font-size: 14px;
  }
  .feedback__form-title {
    font-size: 20px;
  }
  .feedback__form-desc {
    font-size: 14px;
  }
  .invest__box {
    padding: 15px;
  }
  .title {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .invest__features-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .invest__desc {
    font-size: 16px;
  }
  .invest__features {
    width: 100%;
  }
  .invest__features-box {
    width: 100%;
  }
  .reviews__slider-box {
    padding-left: 0;
    padding-top: 50px;
  }
  .reviews__slide {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 15px;
  }
  .reviews__slide-avatar-holder {
    margin-left: 0;
    margin-top: -50px;
  }
  .footer__box {
    flex-direction: column;
  }
  .footer__logo {
    max-width: 120px;
  }
}
@media (max-width: 479px) {
  .header__logo img {
    max-width: 60px;
  }
  .header__contacts-tel {
    font-size: 13px;
    margin-left: 0;
  }
  .header__contacts {
    gap: 5px;
  }
  .hero__info {
    padding: 15px;
  }
  .hero__title {
    font-size: 16px;
  }
  .hero__desc {
    font-size: 14px;
  }
  .title {
    font-size: 18px;
  }
  .advantages__item {
    gap: 15px;
    padding: 15px;
  }
  .advantages__item-title {
    font-size: 16px;
  }
  .feedback__title {
    font-size: 24px;
  }
  .feedback__desc {
    font-size: 18px;
  }
  .works__group {
    grid-template-columns: repeat(1, 1fr);
  }
  .works__groups {
    gap: 15px;
  }
  .prices__title {
    font-size: 18px;
  }
  .prices__value {
    font-size: 18px;
  }
  .prices__desc {
    font-size: 14px;
  }
  .features__title,
  .prices__photos-title {
    font-size: 18px;
  }
  .date__item {
    min-width: 50px;
    width: 50px;
    font-size: 20px;
  }
  .reviews__slider-container {
    gap: 15px;
  }
  .reviews__slide-name {
    font-size: 16px;
  }
  .footer__desc {
    font-size: 14px;
  }
}
.modal__form-title {
  text-align: center;
  font-size: 24px;
  padding-bottom: 15px;
}

.modal {
  padding-top: 30px;
  padding-bottom: 30px;
  max-width: 620px;
}
.modal-success {
  display: none;
}

.form-note-spec {
  font-size: 13px;
  padding-top: 12px;
}
.form-note-spec span {
  color: #f33644;
}

.btn-holder {
  text-align: center;
}

.form-group--error .form-group-help {
  display: block;
  color: #f70400;
  font-size: 12px;
  padding-top: 8px;
}

.modal--success .modal-content {
  display: none;
}
.modal--success .modal-success {
  display: block;
  text-align: center;
  padding-top: 40px;
}
.modal--success .modal-success .modal__form-title {
  margin-top: 35px;
}/*# sourceMappingURL=index.css.map */