
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

* {
  box-sizing: border-box;
  outline: none !important;
}

html {
  height: 100%;
  min-width: 320px;
  overflow-x: hidden;
}

html.locked {
  overflow-y: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  color: #161616;
  color: var(--black);
  line-height: 1.5;
  position: relative;
  font-family: sans-serif;
  overflow: hidden;
}

main {
  position: relative;
  display: block;
  margin: 60px 0;
}

header,
footer {
  position: relative;
  display: block;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 40px;
}

@media (max-width: 1279px) {
  .container {
    padding: 0 15px;
  }
}

form {
  margin-bottom: 0;
}

p {
  display: block;
  margin: 0 0 20px;
  line-height: 1.7;
}

img {
  width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  font-family: "object-fit:cover";
  object-fit: cover;
}

a {
  cursor: pointer;
  display: inline;
  color: inherit;
  text-decoration: none;
  transition: ease .2s;
}

ul {
  margin: 0;
  padding: 0 0 0 10px;
  list-style: none;
}

ul li {
  padding-left: 20px;
  position: relative;
}

ul li:not(:last-of-type) {
  margin-bottom: 10px;
}

ul li:after {
  content: '';
  width: 10px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 10px;
  background-color: #7a3f03;
  background-color: var(--border);
}

ol {
  margin: 0;
  padding: 0 0 0 10px;
  list-style: none;
  counter-reset: li;
}

ol > li {
  position: relative;
  padding-left: 25px;
}

ol > li:not(:last-of-type) {
  margin-bottom: 5px;
}

ol > li:before {
  counter-increment: li;
  content: counters(li,".") ". ";
  position: absolute;
  left: 0;
  top: 0;
  color: #7a3f03;
  color: var(--border);
  font-weight: 600;
}

button {
  border: 0;
  box-shadow: none;
  padding: 0;
}

.hidden {
  display: none;
}

.i-icon {
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
}

b,
strong {
  font-weight: 700;
}

table {
  font-size: inherit;
}

.link {
  cursor: pointer;
}

.link:hover,
.link:active,
.link:focus {
  color: #7a3f03;
  color: var(--border);
}

.dotted {
  border-bottom: 1px dotted;
}

.no-margin {
  margin-bottom: 0 !important;
}

/* Testing autoprefixer */

.autoprefixer {
  display: flex;
}

/* Testing cssnext */

.cssnext {
  background: color(red alpha(-10%));
}

/* Testing precss */

.precss {
  background: green;
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.about__group:not(:last-of-type) {
  margin-bottom: 30px;
}

.about__wrap {
  display: flex;
}

@media (max-width: 767px) {
  .about__wrap {
    flex-direction: column-reverse;
  }
}

.about__wrap-text {
  width: calc(100% - 250px - 70px);
  margin-right: 70px;
}

@media (max-width: 767px) {
  .about__wrap-text {
    width: 100%;
  }
}

.about__wrap-img {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 4px;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .about__wrap-img {
    width: 100%;
    height: 200px;
    margin-bottom: 25px;
  }
}

.about__wrap-img:after {
  content: "";
  position: absolute;
  background: linear-gradient(45deg, rgba(0,0,0,0) 5%, rgba(217, 200, 202, 0.3));
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.about__wrap-img img {
  height: 100%;
  border-radius: 4px;
}

.about__text {
  margin-bottom: 30px;
}

.about .b-grid {
  flex-wrap: wrap;
  margin-bottom: -30px;
}

.about .b-grid__item {
  width: calc(25% - 30px);
  height: 320px;
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  .about .b-grid__item {
    width: calc(33% - 30px);
  }
}

@media (max-width: 767px) {
  .about .b-grid__item {
    width: calc(50% - 30px);
  }
}

@media (max-width: 500px) {
  .about .b-grid__item {
    width: 100%;
    height: 450px;
  }
}

.about .b-grid__item--big {
  width: calc(50% - 30px);
}

@media (max-width: 500px) {
  .about .b-grid__item--big {
    width: 100%;
    height: 250px;
  }
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.b-checkboxes {
  display: flex;
}

.b-checkboxes .b-checkbox:first-of-type {
  margin-right: 20px;
}

.b-checkbox {
  display: block;
  vertical-align: middle;
}

.b-checkbox:hover {
  color: #7a3f03;
  color: var(--border);
}

.b-checkbox--radio {
  display: inline-block;
}

.b-checkbox--radio .b-checkbox__input:checked:not(.disabled) + .b-checkbox__box:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.b-checkbox--radio .b-checkbox__box {
  border-radius: 50%;
}

.b-checkbox--radio .b-checkbox__box:after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: .2s .1s;
}

.b-checkbox__input {
  display: none;
}

.b-checkbox__input:checked:not(.disabled) + .b-checkbox__box {
  transition: all .3s;
  transition-delay: 0s;
  background-color: #7a3f03;
  background-color: var(--border);
}

.b-checkbox__input:checked:not(.disabled) + .b-checkbox__box .b-checkbox__line:after {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.b-checkbox__input:checked:not(.disabled) + .b-checkbox__box .b-checkbox__line--short:after {
  transition: all .15s;
  transition-delay: .15s;
}

.b-checkbox__input:checked:not(.disabled) + .b-checkbox__box .b-checkbox__line--long:after {
  transition: all .15s;
  transition-delay: .3s;
}

.b-checkbox__input:checked:not(.disabled) ~ .b-checkbox__text {
  color: #7a3f03;
  color: var(--border);
}

.b-checkbox__input.disabled + .b-checkbox__box {
  cursor: default;
  opacity: .7;
}

.b-checkbox__input.disabled + .b-checkbox__box + .b-checkbox__text {
  cursor: default;
  opacity: .7;
}

.b-checkbox__label {
  display: flex;
  margin-right: 15px;
  align-items: flex-start;
}

.b-checkbox__label.disabled {
  cursor: default;
  opacity: .7;
}

.b-checkbox__box {
  display: block;
  min-width: 14px;
  max-width: 14px;
  height: 14px;
  margin-top: 2px;
  margin-right: 10px;
  border-radius: 2px;
  background-color: #e9e7f1;
  background-color: var(--background);
  position: relative;
  transition: .2s;
  cursor: pointer;
}

.b-checkbox__text {
  flex: 1 1 auto;
  font-size: 14px;
  cursor: pointer;
}

.b-checkbox__line {
  position: absolute;
  left: 5px;
  bottom: 5px;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  width: 2px;
}

.b-checkbox__line:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  background-color: #fff;
}

.b-checkbox__line--short {
  height: 5px;
  bottom: 4px;
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
}

.b-checkbox__line--short:after {
  -webkit-transform-origin: top;
  transform-origin: top;
  transition: .15s;
  transition-delay: .15s;
}

.b-checkbox__line--long {
  height: 7px;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

.b-checkbox__line--long:after {
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  transition: .15s;
  transition-delay: .0s;
}

.b-checkbox__line--error {
  display: block;
  color: red;
  font-size: 13px;
  margin-top: 3px;
}

.b-checkbox__line--error-plain {
  height: 0;
  margin-top: 0;
}

.b-checkbox__line--left-push {
  margin-left: 23px;
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.b-grid {
  position: relative;
  display: flex;
  margin-left: -30px;
}

@media (max-width: 500px) {
  .b-grid {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
  }
}

.b-grid__arrows {
  display: none;
  z-index: 1;
}

@media (max-width: 500px) {
  .b-grid__arrows {
    display: flex;
  }
}

.b-grid__arrow {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-left: 5px;
  border-radius: 50%;
  background-color: #e9e7f1;
  background-color: var(--background);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.b-grid__arrow:active:before {
  border-left: 2px solid #7a3f03;
  border-left: 2px solid var(--border);
  border-bottom: 2px solid #7a3f03;
  border-bottom: 2px solid var(--border);
}

.b-grid__arrow:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  top: 10px;
  left: 12px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.b-grid__arrow--next {
  margin-left: 0;
  margin-right: 5px;
  right: 0;
}

.b-grid__arrow--next:before {
  left: auto;
  right: 12px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.b-grid__item {
  position: relative;
  cursor: pointer;
  width: 33%;
  height: 240px;
  margin-left: 30px;
  border-radius: 5px;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.3);
  transition: .4s;
}

@media (max-width: 500px) {
  .b-grid__item {
    width: 100%;
    margin-left: 0;
  }
}

.b-grid__item img {
  height: 100%;
  border-radius: 5px;
}

.b-grid__info {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px 15px;
  background-color: rgba(217, 200, 202, 0.8);
  color: #161616;
  color: var(--black);
  visibility: hidden;
  opacity: 0;
}

.b-grid__info.active {
  visibility: visible;
  opacity: 1;
}

.b-grid__close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 15px;
  margin: -15px;
}

.b-grid__close:hover:before,
.b-grid__close:hover:after {
  background-color: #7a3f03;
  background-color: var(--border);
}

.b-grid__close:before,
.b-grid__close:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  background-color: #161616;
  background-color: var(--black);
  -webkit-transform: translate(-50%) rotate(45deg);
  transform: translate(-50%) rotate(45deg);
}

.b-grid__close:after {
  -webkit-transform: translate(-50%) rotate(-45deg);
  transform: translate(-50%) rotate(-45deg);
}

.b-grid__line {
  display: flex;
  font-weight: 700;
  font-size: 17px;
}

.b-grid__line:not(:last-of-type) {
  margin-bottom: 8px;
}

.b-grid__line-title {
  width: 120px;
  margin-right: 10px;
  font-weight: 500;
}

.b-grid__line-value,
.b-grid__line-total {
  width: calc(100% - 130px);
}

.b-grid__line-total {
  white-space: nowrap;
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.b-in-dev {
  padding: 50px 0 30px;
  text-align: center;
}

.b-in-dev__title {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 700;
}

.b-in-dev__text {
  font-size: 16px;
}

.b-in-dev__link {
  color: #7a3f03;
  color: var(--border);
  font-weight: 500;
}

.b-in-dev__link:hover {
  color: #a35303;
  color: var(--link-hover);
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.b-mask {
  display: none;
  position: absolute;
  top: -54px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: rgba(0, 0, 0, 0.2);
}

.b-mask.active {
  display: block;
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.b-popup {
  position: absolute;
  display: none;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 11;
}

.b-popup__bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.b-popup__wrap {
  position: fixed;
  width: 50%;
  max-width: 700px;
  height: 88%;
  max-height: 900px;
  margin: 20px auto;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  z-index: 2;
}

@media (max-width: 1440px) {
  .b-popup__wrap {
    max-width: 470px;
  }
}

@media (max-width: 500px) {
  .b-popup__wrap {
    width: 95%;
    height: 80%;
    max-width: 500px;
    max-height: 700px;
  }
}

.b-popup__wrap--big {
  width: 90%;
  height: 80%;
  max-width: 900px;
  max-height: 800px;
}

@media (max-width: 1440px) {
  .b-popup__wrap--big {
    width: 85%;
    height: 80%;
    max-width: 850px;
    max-height: 800px;
  }
}

@media (max-width: 650px) {
  .b-popup__wrap--big {
    width: 95%;
    height: 70%;
    max-width: 650px;
    max-height: 500px;
  }
}

@media (max-width: 500px) {
  .b-popup__wrap--big {
    width: 95%;
    height: 55%;
    max-width: 500px;
    max-height: 700px;
  }
}

@media (max-width: 450px) {
  .b-popup__wrap--big {
    width: 95%;
    height: 40%;
    max-width: 450px;
    max-height: 500px;
  }
}

.b-popup__img {
  pointer-events: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  font-family: "object-fit:cover";
  object-fit: cover;
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.b-poster {
  position: relative;
  width: 100%;
  height: 250px;
  margin: -60px 0 40px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1023px) {
  .b-poster {
    height: 200px;
    margin-bottom: 25px;
  }
}

@media (max-width: 500px) {
  .b-poster {
    height: 150px;
    margin-bottom: 25px;
  }
}

.b-poster:after {
  content: "";
  position: absolute;
  background: linear-gradient(45deg, rgba(0,0,0,0) 5%, rgba(217, 200, 202, 0.3));
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.b-poster img {
  height: 250px;
  -o-object-fit: cover;
  font-family: "object-fit:cover";
  object-fit: cover;
}

@media (max-width: 1023px) {
  .b-poster img {
    height: 200px;
  }
}

@media (max-width: 500px) {
  .b-poster img {
    height: 150px;
  }
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

@media (max-width: 500px) {
  .b-slider {
    max-width: 500px;
  }
}

.b-slider__item {
  width: 100%;
  margin-left: 0;
}



.b-slider__arrow {
  cursor: pointer;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  background-color: #d9c8ca;
  background-color: var(--btn-hover);
  background-image: none !important;
}

.b-slider__arrow:hover {
  opacity: 0.7;
}

.b-slider__arrow:before {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  top: 12px;
  left: 16px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.b-slider__arrow--next:before {
  left: 10px;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.btn {
  display: inline-flex;
  max-width: 100%;
  height: 31px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #d19c7d;
  background-color: var(--btn);
  border: 1px solid #d19c7d;
  border: 1px solid var(--btn);
  color: #fff;
  padding: 0 24px;
  white-space: nowrap;
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  transition: ease .2s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.btn:hover,
.btn--transparent {
  background: transparent;
  color: #7a3f03;
  color: var(--border);
  border: 1px solid #7a3f03;
  border: 1px solid var(--border);
}

.btn--transparent:hover {
  background-color: #d19c7d;
  background-color: var(--btn);
  border: 1px solid #d19c7d;
  border: 1px solid var(--btn);
  color: #fff;
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.contacts {
  margin-bottom: 60px;
}

@media (max-width: 500px) {
  .contacts {
    margin-bottom: 0;
  }
}

.contacts__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .contacts__wrap {
    flex-direction: column;
  }
}

.contacts__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(50% - 40px);
  height: 300px;
  margin-right: 40px;
  padding: 25px 40px;
  border-radius: 4px;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1023px) {
  .contacts__left {
    width: calc(50% - 20px);
  }
}

@media (max-width: 767px) {
  .contacts__left {
    justify-content: flex-start;
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

.contacts__map {
  width: calc(50% - 40px);
  height: 300px;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1023px) {
  .contacts__map {
    width: calc(50% - 20px);
  }
}

@media (max-width: 767px) {
  .contacts__map {
    width: 100%;
  }
}

.contacts__group {
  display: block;
}

.contacts__group:not(:last-of-type) {
  margin-bottom: 20px;
}

.contacts__group .link {
  display: block;
}

.contacts__feedback .title-2,
.contacts__feedback p {
  text-align: center;
}

.contacts__feedback-form {
  display: block;
  max-width: 700px;
  padding: 25px 0;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
  background-color: #F4EEE6;
  background-color: var(--background1);
}

@media (max-width: 500px) {
  .contacts__feedback-form {
    margin: 0 -15px;
    padding: 25px 15px 35px;
  }
}

.contacts__feedback .form__item {
  margin: 0 auto;
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.footer {
  background-color: #d9c8ca;
  background-color: var(--btn-hover);
  box-shadow: 0 0 17px rgba(0, 0, 0, 0.15);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}

@media (max-width: 500px) {
  .footer__inner {
    flex-direction: column;
  }
}

.footer__inner--bottom {
  justify-content: flex-end;
  padding: 15px 0;
  border-top: 1px solid #7a3f03;
  border-top: 1px solid var(--border);
}

@media (max-width: 500px) {
  .footer__inner--bottom {
    flex-direction: row;
  }
}

.footer__inner--bottom .footer__link {
  margin-left: 5px;
  margin-bottom: 0 !important;
  font-family: "Comic Sans MS", sans-serif;
  font-weight: 700;
}

@media (max-width: 500px) {
  .footer__inner--bottom .footer__link:not(:last-of-type) {
    margin-bottom: 10px;
  }
}

.footer__menu {
  display: block;
}

@media (max-width: 500px) {
  .footer__menu:not(:last-of-type) {
    margin-bottom: 15px;
  }
}

.footer__menu--about .footer__text:last-of-type {
  margin-bottom: 0;
}

.footer__title {
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer__text,
.footer__link:not(:last-of-type) {
  display: block;
  margin-bottom: 10px;
}

.footer__link:hover {
  color: #7a3f03;
  color: var(--border);
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.form__item,
.form-textarea,
.form-input,
.form__label,
.form__file {
  max-width: 400px;
}

@media (max-width: 500px) {
  .form__item,
  .form-textarea,
  .form-input,
  .form__label,
  .form__file {
    font-size: 16px;
  }
}

.form__label {
  display: block;
}

.form__label > span {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
}

.form-textarea,
.form-input__input {
  width: 100%;
  padding: 10px 15px;
  border-radius: 2px;
  transition: border .2s;
}

.form-textarea {
  height: 150px;
  margin-bottom: 15px;
  border: 1px solid #e9e7f1;
  border: 1px solid var(--background);
  resize: none;
}

.form-textarea:hover,
.form-textarea:focus {
  border-color: #7a3f03;
  border-color: var(--border);
}

.form-textarea.error {
  border-color: red;
}

.form-input {
  display: block;
  position: relative;
  margin-bottom: 15px;
}

.form-input__input {
  height: 40px;
  padding: 0 40px 0 15px;
  border: 1px solid #e9e7f1;
  border: 1px solid var(--background);
}

.form-input__input:hover,
.form-input__input:focus {
  border-color: #7a3f03;
  border-color: var(--border);
}

.form-input__input.error {
  border-color: red;
}

.form-input__input.error + .tooltip {
  display: block;
}

.form-input .tooltip {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  align-items: center;
}

.form__file {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}

.form__file [data-file-upload] {
  display: none;
}

.form__file [data-file-text] {
  width: 160px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form__file .tooltip:not(.hidden) {
  display: block;
}

.form .btn {
  margin-top: 15px;
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.swiper-slide {
  cursor: pointer;
  margin: auto 0;
}

@media (max-width: 500px) {
  .swiper-slide {
    width: 100% !important;
    max-width: 500px;
  }
}

.swiper-pagination-bullets {
  position: relative !important;
  bottom: 0 !important;
}

.swiper-pagination-bullet-active {
  background: #7a3f03 !important;
  background: var(--border) !important;
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.title-1 {
  padding: 0;
  margin: 0 0 30px;
  font-size: 36px;
  font-weight: 700;
}

.title-2 {
  padding: 0;
  margin: 0 0 15px;
  font-size: 26px;
  font-weight: 700;
}

@media (max-width: 500px) {
  .title-2 {
    font-size: 22px;
  }
}

.title-3 {
  padding: 0;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}

.title-4 {
  padding: 0;
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 700;
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.expert-reports-detail__link--back {
  display: inline-block;
  position: relative;
  padding-left: 15px;
  margin-bottom: 17px;
  font-size: 12px;
  color: #7a3f03;
  color: var(--border);
}

.expert-reports-detail__link--back:hover {
  color: #a35303;
  color: var(--link-hover);
}

.expert-reports-detail__link--back:hover:before {
  border-left: 1px solid #a35303;
  border-left: 1px solid var(--link-hover);
  border-bottom: 1px solid #a35303;
  border-bottom: 1px solid var(--link-hover);
}

.expert-reports-detail__link--back:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  width: 5px;
  height: 5px;
  border-left: 1px solid #7a3f03;
  border-left: 1px solid var(--border);
  border-bottom: 1px solid #7a3f03;
  border-bottom: 1px solid var(--border);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.expert-reports__grid {
  display: flex;
  width: calc(100% + 30px);
  margin: 0 0 -30px -30px;
  flex-wrap: wrap;
}

.expert-reports__item {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(33% - 27px);
  padding: 20px;
  margin: 0 0 30px 30px;
  border: 1px solid #7a3f03;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1023px) {
  .expert-reports__item {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(50% - 30px);
  }
}

@media (max-width: 600px) {
  .expert-reports__item {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(100% - 30px);
  }
}

.expert-reports__text {
  height: 130px;
  overflow: hidden;
}

@media (max-width: 500px) {
  .expert-reports__text {
    height: 135px;
  }
}

.expert-reports__more {
  display: inline-block;
  margin-top: 5px;
  color: #7a3f03;
  color: var(--border);
}

.expert-reports__more:hover {
  color: #a35303;
  color: var(--link-hover);
  text-decoration: underline;
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.m-advantages {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 500px) {
  .m-advantages {
    flex-direction: column;
  }
}

.m-advantages__item {
  display: block;
  width: calc(33% - 40px);
  padding: 15px 20px 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1023px) {
  .m-advantages__item {
    width: calc(33% - 20px);
  }
}

@media (max-width: 500px) {
  .m-advantages__item {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .m-advantages__item:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

.m-advantages__title.title-3 {
  margin-bottom: 5px;
}

.m-advantages__decor {
  width: 45px;
  height: 2px;
  margin: 0 auto 10px;
  background-color: #161616;
  background-color: var(--black);
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.m-section {
  margin-bottom: 40px;
}

.m-section--back {
  padding: 30px 0 50px;
  background-color: #F4EEE6;
  background-color: var(--background1);
}

.m-section-wrap {
  display: flex;
}

@media (max-width: 500px) {
  .m-section-wrap {
    flex-direction: column;
  }
}

.m-section__text {
  width: calc(100% - 250px - 70px);
  margin-left: 70px;
}

@media (max-width: 1023px) {
  .m-section__text {
    width: calc(100% - 220px - 45px);
    margin-left: 45px;
  }
}

@media (max-width: 500px) {
  .m-section__text {
    width: 100%;
    margin-left: 0;
  }
}

.m-section__text .btn {
  margin-left: auto;
}

.m-section__img {
  position: relative;
  width: 250px;
  height: 300px;
  border-radius: 4px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1023px) {
  .m-section__img {
    width: 220px;
  }
}

@media (max-width: 500px) {
  .m-section__img {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
  }
}

.m-section__img:after {
  content: "";
  position: absolute;
  background: linear-gradient(45deg, rgba(0,0,0,0) 5%, rgba(217, 200, 202, 0.3));
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.m-section__img img {
  height: 100%;
  border-radius: 4px;
}

.m-section__map {
  width: 100%;
  height: 300px;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

/* header-menu */

.h-menu {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.h-menu__item {
  padding: 15px 20px;
}

@media (max-width: 1023px) {
  .h-menu__item {
    padding: 15px 10px;
  }
}

@media (max-width: 767px) {
  .h-menu__item:not(:first-of-type) {
    display: none;
  }
}

.h-menu__item:first-of-type {
  padding-left: 0;
}

.h-menu__item:last-of-type {
  padding-right: 0;
}

.h-menu__item:hover a {
  color: #7a3f03;
  color: var(--border);
  border-bottom: 3px solid #7a3f03;
  border-bottom: 3px solid var(--border);
}

.h-menu__item a {
  padding-bottom: 5px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}

.h-menu__itemsub {
  padding: 15px 20px;
}

.h-menu__itemsub:hover .header__submenu {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.h-menu__itemsub a {
  padding-bottom: 5px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}

.h-menu__burger {
  display: none;
  padding: 0 15px;
  margin: 0 -15px;
}

@media (max-width: 767px) {
  .h-menu__burger {
    display: block;
  }
}

.h-menu__burger-icon {
  position: relative;
  width: 25px;
  height: 2px;
  top: 26px;
  background-color: #161616;
  background-color: var(--black);
}

.h-menu__burger-icon:before,
.h-menu__burger-icon:after {
  position: absolute;
  content: '';
  top: -6px;
  left: 0;
  width: 25px;
  height: 2px;
  background-color: #161616;
  background-color: var(--black);
}

.h-menu__burger-icon:after {
  top: 6px;
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

/* header-submenu */

.h-submenu {
  position: absolute;
  display: block;
  width: 220px;
  top: 54px;
  left: auto;
  background: #d9c8ca;
  background: var(--btn-hover);
  border-radius: 2px;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.5);
  z-index: 2;
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: .5s ease-in-out;
}

.h-submenu:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  top: -5px;
  left: 50%;
  background: #d9c8ca;
  background: var(--btn-hover);
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  transition: .5s ease-in-out;
}

.h-submenu__item {
  padding: 10px 15px;
  text-align: left;
  font-size: 13px;
}

.h-submenu__item:not(:last-of-type) {
  border-bottom: 1px solid #7a3f03;
  border-bottom: 1px solid var(--border);
}

.h-submenu__item:hover a {
  color: #7a3f03;
  color: var(--border);
}

.h-submenu__item a {
  padding: 0;
  border: none;
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.header {
  position: relative;
  height: 54px;
  z-index: 10;
}

.header__inner {
  position: fixed;
  top: -1px;
  left: 0;
  width: 100%;
  height: 54px;
  background-color: #d9c8ca;
  background-color: var(--btn-hover);
  text-align: center;
  transition: all 0.4s ease;
  z-index: 11;
}

.header__inner:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  z-index: -1;
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

/* mobile-menu */

.m-menu {
  position: absolute;
  display: none;
  top: 0;
  right: 0;
  width: 85%;
  box-shadow: 0 0 15px rgba(0,0,0,.05);
  box-shadow: var(--shadow);
  -webkit-transform: translateX(125%);
  transform: translateX(125%);
  transition: .3s;
  z-index: 11;
}

@media (max-width: 767px) {
  .m-menu {
    display: block;
  }
}

.m-menu.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.m-menu__inner {
  height: 100vh;
  padding: 30px 20px;
  background-color: #d9c8ca;
  background-color: var(--btn-hover);
  text-align: left;
  overflow: auto;
}

.m-menu__item {
  font-weight: 700;
  margin-bottom: 20px;
}

.m-menu__item--top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 23px;
}

.m-menu__item--phones,
.m-menu__item--address {
  font-weight: 500;
}

.m-menu__item--phones {
  margin-bottom: 25px;
}

.m-menu__item--phones a {
  display: block;
  margin-bottom: 15px;
}

.m-menu__item--address {
  margin-top: 30px;
}

.m-menu__close {
  position: relative;
  padding: 10px 15px;
  margin: -10px -15px;
}

.m-menu__close:before,
.m-menu__close:after {
  position: absolute;
  content: '';
  top: 20px;
  left: 0;
  width: 15px;
  height: 2px;
  background-color: #161616;
  background-color: var(--black);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.m-menu__close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.styled-list {
  margin-bottom: 30px;
}

.styled-list__title {
  margin-bottom: 10px;
}
:root {
  /* colors */
  /*--primary: #f46b01;*/
  --black: #161616;
  --btn: #d19c7d;
  --btn-hover: #d9c8ca;
  --border: #7a3f03;
  --background: #e9e7f1;
  --background1: #F4EEE6;
  --link-hover: #a35303;
  --mask: rgba(0,0,0,0.2);
  --shadow: 0 0 15px rgba(0,0,0,.05);
  --shadow-menu: 0 6px 6px rgba(0,0,0,.16);
}

.styled-table {
  display: table;
  width: 100%;
  margin-bottom: 30px;
  border-radius: 4px;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
}

@media (max-width: 500px) {
  .styled-table {
    box-shadow: none;
    margin: 0 -15px;
  }
}

.styled-table__row {
  display: table-row;
}

@media (max-width: 500px) {
  .styled-table__row:first-of-type {
    display: none;
  }
}

.styled-table__row:nth-of-type(2n + 1) .styled-table__cell {
  background-color: #e9e7f1;
  background-color: var(--background);
}

.styled-table__row:not(:last-of-type) .styled-table__cell {
  border-bottom: 1px solid #7a3f03;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 500px) {
  .styled-table__row:not(:last-of-type) .styled-table__cell {
    border-bottom: none;
  }
}

@media (max-width: 500px) {
  .styled-table__row:not(:last-of-type) .styled-table__cell:last-of-type {
    border-bottom: 1px solid #7a3f03;
    border-bottom: 1px solid var(--border);
  }
}

.styled-table__cell {
  display: table-cell;
  width: 25%;
  padding: 10px 20px;
}

@media (max-width: 500px) {
  .styled-table__cell {
    display: block;
    width: calc(100% + 30px) !important;
    padding: 10px 15px;
  }
}

.styled-table__cell:nth-of-type(1) {
  width: 23%;
}

.styled-table__cell:nth-of-type(2) {
  width: 45%;
}

.styled-table__cell:nth-of-type(3) {
  width: 17%;
}

.styled-table__cell:nth-of-type(4) {
  width: 15%;
}

.styled-table__cell-title {
  font-weight: 700;
}

@media (max-width: 500px) {
  .styled-table__cell-title.hidden {
    display: block;
  }
}