*::-webkit-input-placeholder,
*:-moz-placeholder,
*::-moz-placeholder,
*:-ms-input-placeholder {
  color: #2F2920;
  opacity: 0.5;
}

body input.error,
body textarea.error {
  border: 1px solid #F67E8D;
}

body input:required:valid,
body textarea:required:valid,
body input:focus:required:invalid,
body textarea:focus:required:invalid {
  border: 1px solid #50AD67;
}

/*bootstrap*/
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.container:after {
  content: ' ';
  display: block;
  z-index: 1;
}

@media (min-width: 700px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 768px) {
  .container {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (min-width: 769px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 1281px) {
  .container {
    max-width: 1280px;
  }
}

.row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.al-it-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rel {
  position: relative;
  z-index: 1;
}

/**/
body {
  overflow-x: hidden;
  background: #FAFAFA;
  font-family: "Montserrat", sans-serif;
  color: #262626;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 20px;
  min-height: 100vh;
}

main {
  min-height: calc(100vh - 238px);
  position: relative;
}

a {
  text-decoration: none;
  color: #0D0D0D;
}

/*colors*/
.primary {
  background: #50AD67;
  color: #ffffff;
}

.success {
  background: #F9BB34;
  color: #ffffff;
}

.white-text {
  color: #ffffff;
}

.primary-text {
  color: #B39465;
}

.success-text {
  color: #F9BB34;
}

span.primary,
span.success {
  padding: 0 5px 5px;
}

.fw-bold {
  font-weight: 700;
}

/*main style*/
ul,
ol {
  margin: 0;
  padding: 0;
}

button {
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

li {
  list-style: none;
}

img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

a {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

a:hover {
  color: #B39465;
}

section {
  padding-top: 100px;
}

@media (max-width: 600px) {
  section {
    padding-top: 50px;
  }
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  color: #2F2920;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  width: 100%;
  padding: 15px 30px 15px 30px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  cursor: pointer;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: -o-radial-gradient(50% 50%, 50% 50%, #C2A77D 0%, #B39465 100%);
  background: radial-gradient(50% 50% at 50% 50%, #C2A77D 0%, #B39465 100%);
  -webkit-box-shadow: 0 0 10px rgba(217, 184, 134, 0.7), 0px 2px 0px #957B55;
  box-shadow: 0 0 10px rgba(217, 184, 134, 0.7), 0px 2px 0px #957B55;
  border-radius: 5px;
}

.btn:hover,
.btn:active {
  color: #2F2920;
  background: -o-radial-gradient(50% 50%, 50% 50%, #B39465 0%, #A4824E 100%);
  background: radial-gradient(50% 50% at 50% 50%, #B39465 0%, #A4824E 100%);
  -webkit-box-shadow: 0px 0px 10px rgba(217, 184, 134, 0.7), 0px 2px 0px #957B55;
  box-shadow: 0px 0px 10px rgba(217, 184, 134, 0.7), 0px 2px 0px #957B55;
}

.input {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #D4D4D4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.15);
  box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  font-weight: 300;
  font-size: 16px;
  line-height: 120%;
  padding: 20px;
  outline: none;
  font-family: "Montserrat", sans-serif;
}

input.btn {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 600px) {
  .input {
    font-size: 16px;
  }
}

.section-title {
  font-family: Forum;
  font-style: normal;
  font-weight: normal;
  font-size: 50px;
  line-height: 110%;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  margin-bottom: 8px;
}

@media only screen and (max-width: 640px) {
  .section-title {
    font-size: 32px;
    line-height: 110%;
  }
}

.section-subtitle {
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  opacity: 0.8;
  text-align: center;
  margin: 0;
}

.subtitle {
  font-size: 35px;
  line-height: 110%;
  text-transform: uppercase;
  font-family: Forum;
  margin: 0;
}

@media only screen and (max-width: 640px) {
  .subtitle {
    font-size: 20px;
  }
}

.ico {
  fill: #50AD67;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.check {
  /* max-width: 280px; */
  text-align: left;
  display: block;
  position: relative;
  cursor: pointer;
}

.check input {
  margin: 10px auto 0;
  display: none;
}

.check span {
  color: #FFFFFF;
  font-weight: 300;
  font-size: 12px;
  line-height: 120%;
  padding-left: 22px;
  display: block;
}

.check span::before {
  width: 14px;
  height: 14px;
  content: ' ';
  display: block;
  margin-right: 8px;
  background: #ffffff;
  border: 1px solid #6cbf77;
  -webkit-box-shadow: 0 1px 6px rgba(106, 190, 118, 0.1), inset 0 -1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 6px rgba(106, 190, 118, 0.1), inset 0 -1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 0;
}

.check span:after {
  content: ' ';
  display: block;
  height: 9px;
  width: 5px;
  border: 2px solid #ffffff;
  border-left: none;
  border-top: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 5px;
  top: 1px;
  opacity: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.check input:checked+span:after {
  opacity: 1;
}

.check input:checked+span:before {
  background: -webkit-gradient(linear, left top, left bottom, from(#6CBF77), to(#429C5F)), -webkit-gradient(linear, left top, left bottom, from(#C4C4C4), to(rgba(196, 196, 196, 0)));
  background: -o-linear-gradient(top, #6CBF77 0%, #429C5F 100%), -o-linear-gradient(top, #C4C4C4 0%, rgba(196, 196, 196, 0) 100%);
  background: linear-gradient(180deg, #6CBF77 0%, #429C5F 100%), linear-gradient(180deg, #C4C4C4 0%, rgba(196, 196, 196, 0) 100%);
  -webkit-box-shadow: 0 1px 6px rgba(106, 190, 118, 0.1), inset 0 -1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 6px rgba(106, 190, 118, 0.1), inset 0 -1px 1px rgba(0, 0, 0, 0.1);
}

/**/
.line-bg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding-bottom: 50px;
}

.line-bg__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.line-bg .line {
  width: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(129, 129, 129, 0.5)), to(rgba(255, 255, 255, 0.2)));
  background: -o-linear-gradient(left, rgba(129, 129, 129, 0.5), rgba(255, 255, 255, 0.2));
  background: linear-gradient(to right, rgba(129, 129, 129, 0.5), rgba(255, 255, 255, 0.2));
  opacity: 0.4;
  height: 100%;
  z-index: 0;
  position: relative;
}

.line-bg .line:nth-child(1) {
  left: 16.666%;
}

@media only screen and (max-width: 640px) {
  .line-bg .line:nth-child(1) {
    left: 0;
  }
}

.line-bg .line:nth-child(2) {
  left: 33.333%;
}

@media only screen and (max-width: 640px) {
  .line-bg .line:nth-child(2) {
    left: 25%;
  }
}

.line-bg .line:nth-child(3) {
  left: 49.999%;
}

@media only screen and (max-width: 640px) {
  .line-bg .line:nth-child(3) {
    left: 75%;
  }


}

.line-bg .line:nth-child(4) {
  left: 66.666%;
}

@media only screen and (max-width: 640px) {
  .line-bg .line:nth-child(4) {
    left: 99%;
  }
}

.line-bg .line:nth-child(5) {
  left: 83.333%;
}

@media only screen and (max-width: 640px) {
  .line-bg .line:nth-child(5) {
    display: none;
  }
}

.toTopBtn {
  position: fixed;
  z-index: 49;
  right: 55px;
  bottom: 55px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  display: none;
  opacity: 0.5;
  background-image: url(../img/totop.svg);
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.toTopBtn:hover {
  opacity: 1;
}

@media only screen and (max-width: 980px) {
  .toTopBtn {
    right: 20px;
    bottom: 90px;
  }
}

@media only screen and (max-width: 480px) {
  .toTopBtn {
    right: 10px;
  }
}

.hidden {
  display: none;
}

.quiz__label.hidden {
  display: none;
}

/*header start*/
.header__container {
  position: absolute;
  max-width: 1280px;
  padding-right: 15px;
  padding-left: 15px;
  left: calc(50% - 640px);
  top: 0;
  z-index: 50;
  color: #ffffff;
  width: 100%;
}

@media (max-width: 1280px) {
  .header__container {
    max-width: 100%;
    left: 0;
  }
}

.header__top {
  border-bottom: 1px solid rgba(217, 217, 216, 0.2);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 41px;
}

@media (max-width: 510px) {
  .header__top .header__mail {
    display: none;
  }
}

.header__menu-link {
  color: #FFFFFF;
  opacity: 0.8;
  font-weight: 600;
  font-size: 12px;
  line-height: 120%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  margin-right: 50px;
}

@media (max-width: 1180px) {
  .header__menu-link {
    margin-right: 30px;
  }
}

.header__mail {
  font-weight: 600;
  font-size: 12px;
  line-height: 120%;
  opacity: 0.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
}

.header__mail .icon {
  fill: #ffffff;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.header__mail:hover .icon {
  fill: #B39465;
}

.header__main {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 59px;
  border-bottom: 1px solid rgba(217, 217, 216, 0.2);
}

@media only screen and (max-width: 640px) {
  .header__main .big-phone {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .header__main .logo__img {
    max-width: 110px;
  }
}

@media only screen and (max-width: 640px) {
  .header__main .logo__text {
    position: absolute;
    width: 100%;
    margin-left: 0;
    top: 115px;
    max-width: calc(100% - 15px);
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .header__main .header__text {
    font-size: 10px;
  }
}

.header__contacts {
  margin: 0 0 0 auto;
}

@media (max-width: 1180px) {
  .header__contacts {
    margin: 0 0 0 auto;
  }
}

@media (max-width: 510px) {
  .header__contacts {
    margin: 0 15px 0 0;
    width: calc(100% - 30px);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.header__burger {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #FFFFFF;
  font-family: Forum;
  font-size: 22px;
  line-height: 110%;
  text-transform: uppercase;
}

.header__burger .icon {
  width: 36px;
  height: 36px;
  margin-left: 20px;
}

@media (max-width: 480px) {
  .header__burger .icon {
    margin-left: 10px;
  }
}

@media (max-width: 480px) {
  .header__burger {
    font-size: 15px;
  }
}

.header__popup {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  min-height: 100%;
  height: 100vh;
  overflow-y: auto;
  background-color: #313131;
  background-image: url(../img/popup-bg.png);
  background-repeat: no-repeat;
  background-position-y: 84px;
  background-position-x: 43%;
  padding: 40px 16px 40px 16px;

  opacity: 0;
  visibility: hidden;
  transition: all .4s;
  transform-origin: top;
  transform: scale(1, 0);
}

.header__popup-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid rgba(217, 217, 216, 0.2);
  border-bottom: 1px solid rgba(217, 217, 216, 0.2);
}

.header__popup-top p {
  font-size: 32px;
  line-height: 110%;
  color: #FFFFFF;
  font-family: Forum;
  text-transform: uppercase;
  margin: 12px 0;
}

.header__popup-top .icon {
  width: 32px;
  height: 32px;
}

.header__popup .header__menu-ul {
  margin: 20px 0;
}

.header__popup .header__menu-link {
  height: initial;
  padding: 10px 0;
}

.header__popup .header__text {
  text-align: left;
  margin-bottom: 30px;
}

.header__popup .header__mail {
  margin-bottom: 10px;
}

.header__popup a.big-phone {
  margin-bottom: 4px;
  display: block;
  text-align: left;
}

.logo__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 130%;
  opacity: 0.8;
  margin: 0 0 0 30px;
  max-width: 180px;
}

.big-phone {
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #B39465;
  text-align: right;
  margin: 0 0 4px 0;
}

.header__text {
  opacity: 0.8;
  text-align: right;
  font-weight: 300;
  font-size: 12px;
  line-height: 120%;
  margin: 0;
}

.btn.insta {
  height: 39px;
  padding: 13px 30px 11px 30px;
}

@media (max-width: 1180px) {
  .btn.insta {
    padding: 13px 24px 11px 24px;
  }
}

.btn.insta .icon {
  width: 20px;
  height: 20px;
  fill: #2F2920;
  margin: 0 8px 0 0;
}

.header__popup .header__popup-top,
.header__popup .header__menu-ul,
.header__popup .header__mail,
.header__popup .big-phone,
.header__popup .header__text {
  transition: all 1.4s;
  opacity: 0;
  transition-delay: .2s;
}

.header__popup .header__menu-ul {
  transition-delay: .4s;
}

.header__popup .header__mail {
  transition-delay: .6s;
}

.header__popup .big-phone {
  transition-delay: .8s;
}

.header__popup .header__text {
  transition-delay: .9s;
}

.menu--open .header__popup .header__popup-top,
.menu--open .header__popup .header__menu-ul,
.menu--open .header__popup .header__mail,
.menu--open .header__popup .big-phone,
.menu--open .header__popup .header__text {
  opacity: 1;
}

/*header end*/
/*first-screen start*/
.first-screen {
  background: url(../img/first-screen/first-screen-bg.jpg) center/cover no-repeat;
}

.first-screen__container {
  min-height: 822px;
}

@media (max-width: 1200px) {
  .first-screen__container {
    min-height: initial;
  }
}

.first-screen__content {
  max-width: 510px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 164px;
}

.first-screen__content .section-title,
.first-screen__content .section-subtitle {
  text-align: left;
  color: #ffffff;
}

.first-screen__content .section-title {
  margin-bottom: 15px;
}

@media (max-width: 700px) {
  .first-screen__content .section-title {
    font-size: 48px;
  }
}

.first-screen__content .section-subtitle {
  margin-bottom: 73px;
}

.first-screen__slider-wrap {
  max-width: 50%;
  overflow: hidden;
}

@media (max-width: 700px) {
  .first-screen__slider-wrap {
    display: none;
  }
}

.first-screen__slider {
  height: 100%;
}

.first-screen .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: initial;
}

.first-screen .swiper-slide img {
  display: block;
  max-width: 100%;
  height: auto;
}

.first-screen__slider-pag {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 700px) {
  .first-screen__slider-pag {
    display: none;
  }
}

.first-screen .first-screen__next,
.first-screen .first-screen__prev {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #B39465;
  left: initial;
  top: initial;
  right: initial;
  margin-top: initial;
}

.first-screen .first-screen__next .icon,
.first-screen .first-screen__prev .icon {
  width: 10px;
  height: 10px;
}

.first-screen .swiper-button-disabled {
  border-color: #5F5F5D;
}

.first-screen .first-screen__prev {
  margin-right: 5px;
}

.first-screen .first-screen__next::after {
  content: ' ';
}

.first-screen .first-screen__prev:after {
  content: ' ';
}

.first-screen .first-screen__pagination {
  position: initial;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 32px;
  margin-left: 17px;
  text-transform: uppercase;
  color: #5F5F5D;
  font-size: 26px;
  line-height: 110%;
  font-family: Forum;
}

.first-screen .swiper-pagination-current {
  color: #ffffff;
}

.first-screen__down {
  position: absolute;
  left: calc(50% - 6px);
  bottom: 20px;
  animation: down 1.5s infinite;
  -webkit-animation: down 2.5s infinite;
}

.first-screen__down .icon {
  width: 12px;
  height: 12px;
  opacity: 0.3;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.first-screen__down:hover .icon {
  opacity: .9;
}

/* .first-screen:before,
.first-screen:after {
  content: ' ';
  display: block;
  height: 22px;
  width: calc(50% - 49px);
  background: #fafafa;
  position: absolute;
  bottom: 0;
}

.first-screen:before {
  left: 0;
}

.first-screen:after {
  right: 0;
} */

.first-screen-bottom {
  position: relative;
  z-index: 7;
  height: 22px;
  background: transparent;
  top: -22px;
}

.first-screen-bottom .line-bg {
  z-index: 10;
  padding-bottom: 0;
}

.first-screen-bottom .line-bg .line:nth-child(3) {
  visibility: hidden;
}

@media (max-width: 640px) {
  .first-screen-bottom .line-bg .line:nth-child(3) {
    visibility: visible;
  }
}

.first-screen-bottom:before,
.first-screen-bottom:after {
  content: ' ';
  display: block;
  height: 22px;
  width: calc(50% - 49px);
  background: #fafafa;
  position: absolute;
  top: 0
}

.first-screen-bottom {
  position: relative;
  z-index: 1;
}

.first-screen-bottom:before {
  left: 0;
}

.first-screen-bottom:after {
  right: 0;
}

.first-screen .first-screen__container:after {
  content: ' ';
  display: block;
  width: 100px;
  height: 22px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 50px);
  background: url(../img/icon/Subtract.svg) center/contain no-repeat;
}

@keyframes down {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  50% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  90% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@-webkit-keyframes down {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  20% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }

  40% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

/*first-screen end*/
/*block1 start*/
.block1__img,
.block1__list {
  width: 100%;
  max-width: calc(50% - 30px);
  padding: 0 15px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-top: 40px;
}

.block1__img {
  padding-left: 74px;
  position: relative;
}

.block1__img img {
  margin: 0 0 0 auto;
}

.block1__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .block1__list {
    max-width: 540px;
  }
}

@media (max-width: 480px) {
  .block1__list {
    margin-top: 0;
  }
}

@media (max-width: 1100px) {
  .block1__img {
    max-width: 573px;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .block1__img {
    padding-left: 15px;
    margin-top: 30px;
  }

  .block1__img img {
    margin: 0 auto;
  }
}

@media (max-width: 1100px) {
  .block1__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.block1__item {
  width: 50%;
  margin-bottom: 30px;
}

@media (max-width: 1100px) {
  .block1__item {
    text-align: center;
  }
}



.block1__item img {
  margin-bottom: 16px;
  display: block;
  object-fit: none;
  height: 66px;
}

@media (max-width: 1100px) {
  .block1__item img {
    margin: 0 auto 13px;
  }
}

@media (max-width: 480px) {
  .block1__item {
    margin-bottom: 20px;
  }

  .block1__item p {
    margin: 0;
    padding: 0 2px;
    font-size: 14px;
  }

  .block1__item img {
    margin: 0 auto 2px;
  }
}

.round {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: -o-radial-gradient(50% 50%, 50% 50%, #D5BC98 0%, #D9B784 100%), #D9B784;
  background: radial-gradient(50% 50% at 50% 50%, #D5BC98 0%, #D9B784 100%), #D9B784;
  position: absolute;
}

.round span {
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  -webkit-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.block1__round {
  right: 40px;
  top: calc(50% - 58px);
  background-image: url(../img/icon/round-star.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.block1__round span {
  background: url(../img/block1/block-1-round.png) center/contain no-repeat;
  left: 8px;
  top: 8px;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

/*block1 end*/

.portfolio__list {
  margin-top: 76px;
  display: -ms-grid;
  display: grid;
  gap: 32px;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: (310px)[3];
  grid-template-rows: repeat(3, 310px);
  grid-auto-flow: dense;
}

@media (max-width: 1200px) {
  .portfolio__list {
    gap: 16px;
    -ms-grid-rows: (24vw)[3];
    grid-template-rows: repeat(3, 24vw);
  }
}

@media (max-width: 740px) {
  .portfolio__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    margin-top: 46px;
  }
}

@media (max-width: 680px) {
  .portfolio__list {
    /* -ms-grid-rows: (44vw)[3];
    grid-template-rows: repeat(3, 44vw); */
    display: flex;
    flex-wrap: wrap;
    margin: 20px -10px 0 0;
    gap: 10px;
  }

  .portfolio__item {
    max-width: calc(50% - 10px);
    width: 100%;
  }
}

@media (max-width: 360px) {}

.portfolio__item {
  -webkit-filter: drop-shadow(0 1px 30px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 1px 30px rgba(0, 0, 0, 0.1));
  border-radius: 3px;
  overflow: hidden;
}

.portfolio__item img {
  display: block;
  min-width: 100%;
  min-height: 100%;
  max-height: initial;
  width: 100%;
  height: auto;
  -o-object-fit: initial;
  object-fit: initial;
}

img.fancybox-image {
  object-fit: initial !important;
}

/* @media (max-width: 680px) {
  .portfolio__item {
    height: 44vw;
  }
} */

.fancybox-slide--image .fancybox-content {
  border-radius: 0 !important;
}

@media (max-width: 360px) {
  .portfolio__item {
    width: 100%;
    height: 170px;
    max-height: initial;
  }
}

.portfolio__item.full {
  grid-row: span 2;
  grid-column: span 2;
}

@media (max-width: 680px) {
  .portfolio__item.full {
    height: initial;
  }
}

@media (max-width: 360px) {
  /* .portfolio__item.full {
    height: 44vw;
  } */
}

.portfolio__item.wide {
  grid-row: span 1;
  grid-column: span 2;
  max-height: 310px;
}

@media (max-width: 1200px) {
  .portfolio__item.wide {
    height: 24vw;
  }
}

@media (max-width: 680px) {
  .portfolio__item.wide {
    height: initial;
  }
}

.portfolio__item-link {
  position: relative;
}

.portfolio__item-link.link-hidden {
  display: none;
}

.portfolio__item-link a {
  display: block;
  height: 100%;
}

.portfolio__item-link:after {
  content: ' ';
  display: block;
  background-color: rgba(38, 38, 38, 0.7);
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all .3s;
}

.portfolio__item-link:hover:after {
  background-color: rgba(38, 38, 38, 0.9);
}

.portfolio__item-link p {
  font-family: Forum;
  color: #FFFFFF;
  font-size: 30px;
  line-height: 110%;
  text-transform: uppercase;
  max-width: 205px;
  position: absolute;
  z-index: 1;
  top: 40px;
  left: 40px;
  padding-right: 10px;
  margin: 0;
}

@media (max-width: 1200px) {
  .portfolio__item-link p {
    left: 20px;
    top: 25px;
  }
}

@media (max-width: 1000px) {
  .portfolio__item-link p {
    font-size: 25px;
  }
}

@media (max-width: 870px) {
  .portfolio__item-link p {
    font-size: 20px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .portfolio__item-link p {
    font-size: 16px;
    left: 16px;
  }
}

.portfolio__item-link img {
  position: relative;
  z-index: -1;
}

.portfolio__item-link .icon {
  position: absolute;
  z-index: 1;
  width: 42px;
  height: 42px;
  right: 48px;
  bottom: 76px;
}

@media (max-width: 1200px) {
  .portfolio__item-link .icon {
    bottom: 41px;
  }
}

@media (max-width: 1100px) {
  .portfolio__item-link .icon {
    width: 30px;
    height: 30px;
    right: 25px;
  }
}

@media (max-width: 480px) {
  .portfolio__item-link .icon {
    right: 20px;
    bottom: 31px;
  }
}

.portfolio__round {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 1;
  background-image: url(../img/icon/Eye2.svg);
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1200px) {
  .portfolio__round {
    left: 20px;
    bottom: 25px;
  }
}

@media (max-width: 1100px) {
  .portfolio__round {
    width: 80px;
    height: 80px;
    background-size: 25px;
  }
}

@media (max-width: 800px) {
  .portfolio__round {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .portfolio__round {
    left: 14px;
    bottom: 16px;
    /* display: none; */
  }
}

.portfolio__round span {
  left: 8px;
  top: 8px;
  background: url(../img/icon/portfolio-round.png) center/contain no-repeat;
}

@media (max-width: 1100px) {
  .portfolio__round span {
    width: 72px;
    height: 72px;
    top: 4px;
    left: 4px;
  }
}

@media (max-width: 800px) {
  .portfolio__round span {
    width: 52px;
    height: 52px;
  }
}

.portfolio__item.hidden {
  display: none;
}

.portfolio__item {
  display: block;
}

.portfolio__item a {
  display: block;
  height: 100%;
}

/* .portfolio__lst-more{
  display: none;
  margin-top: 26px;
}
.portfolio__list-more.show{
  display: grid;
} */
.portfolio__item-link {
  cursor: pointer;
}

/*portfolio end*/
/*measuring start*/
@media (max-width: 765px) {
  .measuring__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.measuring__content {
  text-align: left;
}

.measuring__content .section-title,
.measuring__content .section-subtitle {
  text-align: left;
}

@media (max-width: 765px) {

  .measuring__content .section-title,
  .measuring__content .section-subtitle {
    text-align: center;
  }
}

.measuring__content .section-subtitle {
  margin-bottom: 26px;
}

@media (max-width: 765px) {
  .measuring__content {
    text-align: center;
  }
}

.measuring__content,
.measuring__img {
  width: 100%;
  max-width: 50%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding: 0 15px;
}

@media (max-width: 1100px) {
  .measuring__content {
    max-width: 100%;
    position: relative;
    z-index: 1;
  }

  .measuring__content .measuring__item {
    max-width: 50%;
    padding: 0 22px;
    font-size: 16px;
    line-height: 20px;
  }
}

@media (max-width: 820px) {
  .measuring__content .measuring__item {
    padding: 0 0 0 22px;
    max-width: 320px;
  }
}

@media (max-width: 765px) {
  .measuring__content .measuring__item {
    margin: 0 auto;
    padding: 0;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .measuring__content .measuring__item:before {
    left: calc(50% - 45px);
  }
}

@media (max-width: 1100px) {
  .measuring__img {
    position: absolute;
    max-width: 450px;
    right: -15px;
    top: 120px;
    z-index: 0;
  }
}

@media (max-width: 765px) {
  .measuring__img {
    position: initial;
    right: initial;
    top: initial;
    margin: 20px auto 0;
  }
}

.measuring__img-content {
  background: #262626;
  color: #ffffff;
  border: 1px solid rgba(227, 227, 227, 0.2);
  -webkit-box-shadow: 0 0 0 10px #262626, 0 0 22px 111px rgba(0, 0, 0, 0.02);
  box-shadow: 0 0 0 10px #262626, 0 0 22px 111px rgba(0, 0, 0, 0.02);
  position: relative;
  z-index: 1;
  margin: auto;
}

.equipment__list,
.measuring__list {
  counter-reset: num;
}

.measuring__item,
.equipment__item {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  opacity: 0.9;
  height: 106px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 0 44px;
  list-style: none;
}

.measuring__item:before,
.equipment__item:before {
  font-weight: 500;
  font-size: 87px;
  line-height: 106px;
  color: #D9B784;
  opacity: 0.1;
  content: "0" counter(num) " ";
  counter-increment: num;
  position: absolute;
  left: 0;
  top: 0;
}

.measuring__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.equipment__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.img-label {
  -webkit-transform: skewY(-2deg);
  -ms-transform: skewY(-2deg);
  transform: skewY(-2deg);
  border-radius: 3px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.img-label__inner {
  text-align: center;
  -webkit-transform: skewY(2deg);
  -ms-transform: skewY(2deg);
  transform: skewY(2deg);
  padding: 29px 35px;
}

@media (max-width: 600px) {
  .img-label__inner {
    padding: 30px 25px;
  }

  .measuring__item,
  .equipment__item {
    height: 85px;
  }
}

.img-label__title {
  font-size: 32px;
  line-height: 35px;
  font-family: Forum;
  margin: 0 0 6px;
}

@media (max-width: 600px) {
  .img-label__title {
    font-size: 26px;
    line-height: 29px;
  }
}

.img-label__staff {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  opacity: 0.8;
  margin: 0;
}

/*measuring end*/
/*backform-section start*/
.backform-section {
  margin: 10px;
  margin-top: 110px;
  background: #313131;
  border-radius: 3px;
  border: 1px solid #3E3E3E;
  -webkit-box-shadow: 0 0 0 10px #313131;
  box-shadow: 0 0 0 10px #313131;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

.backform-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 35px 40px 35px 101px;
}

@media (max-width: 1360px) {
  .backform-section__inner {
    padding: 35px 40px 35px 120px;
  }
}

@media (max-width: 710px) {
  .backform-section__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 94px 20px 45px 20px;
  }
}

.backform-section__inner .form-title {
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: 30px;
  line-height: 110%;
  font-family: Forum;
  font-weight: normal;
  max-width: 274px;
  margin: 0;
  margin-right: 20px;
}

@media (max-width: 1360px) {
  .backform-section__inner .form-title {
    margin-right: 10px;
  }
}

@media (max-width: 1200px) {
  .backform-section__inner .form-title {
    max-width: 200px;
  }
}

@media (max-width: 780px) {
  .backform-section__inner .form-title {
    max-width: 177px;
  }
}

@media (max-width: 710px) {
  .backform-section__inner .form-title {
    text-align: center;
    max-width: 228px;
    margin: 0 0 29px 0;
  }
}

.backform-section__inner .backform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media (max-width: 1100px) {
  .backform-section__inner .backform {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .backform-section__inner .backform input {
    max-width: 358px;
  }

  .backform-section__inner .backform input:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media (max-width: 710px) {
  .backform-section__inner .backform {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.backform-section__inner .backform input {
  height: 60px;
  margin-left: 35px;
  min-width: 358px;
}

@media (max-width: 770px) {
  .backform-section__inner .backform input {
    min-width: initial;
  }
}

@media (max-width: 710px) {
  .backform-section__inner .backform input {
    margin-left: 0;
  }
}

.backform-section__round {
  background-image: url(../img/icon/backform-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  top: calc(50% - 58px);
  left: -58px;
}

@media (max-width: 1360px) {
  .backform-section__round {
    left: -25px;
  }
}

@media (max-width: 710px) {
  .backform-section__round {
    top: -58px;
    left: calc(50% - 58px);
  }
}

.backform-section__round span {
  background: url(../img/icon/backform-round.png) center/contain no-repeat;
  left: 8px;
  top: 8px;
}

/*backform-section end*/
/*equipment start */
.equipment {
  background: url(../img/equipment-bg.png) center/cover no-repeat;
}

.equipment .section-title {
  max-width: 837px;
  margin: 0 auto 8px;
}

.equipment__list {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  width: 100%;
  max-width: 945px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

@media (max-width: 1240px) {
  .equipment__list {
    max-width: 50%;
  }
}

@media (max-width: 700px) {
  .equipment__list {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    column-count: initial;
  }
}

@media (max-width: 1240px) {
  .equipment__item {
    font-size: 16px;
    padding: 0 25px;
  }
}

@media (max-width: 950px) {
  .equipment__item {
    font-size: 14px;
    text-align: center;
  }

  .equipment__item:before {
    left: calc(50% - 55px);
  }
}

@media (max-width: 700px) {
  .equipment__item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 50%;
    width: 100%;
  }
}

.equipment__inner {
  margin-top: 60px;
}

@media (max-width: 700px) {
  .equipment__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 30px;
  }
}

.equipment__img {
  width: 353px;
}

@media (max-width: 1240px) {
  .equipment__img {
    max-width: 353px;
    width: 100%;
    margin: 0 auto;
  }
}

/*equipment end*/
/*quiz start*/
@media (max-width: 600px) {
  .quiz {
    padding-top: 110px;
  }
}

.quiz:after {
  content: ' ';
  display: block;
  width: 404px;
  height: 409px;
  background: url(../img/ellipse.svg) center/contain no-repeat;
  position: absolute;
  z-index: 0;
  left: calc(50% - 660px);
  bottom: -110px;
}

@media (max-width: 1100px) {
  .quiz:after {
    left: -100px;
    bottom: -90px;
  }
}

@media (max-width: 580px) {
  .quiz:after {
    display: none;
  }
}

.quiz__round {
  top: -40px;
  right: -40px;
  background-image: url(../img/quiz/calculation.svg);
  background-size: 53px;
  background-position: center;
  background-repeat: no-repeat;
}

.quiz__round span {
  background: url(../img/quiz/quiz-round.png) center/contain no-repeat;
  left: 8px;
  top: 8px;
}

@media (max-width: 1125px) {
  .quiz__round {
    top: -30px;
    right: -30px;
  }
}

@media (max-width: 720px) {
  .quiz__round {
    top: -65px;
    left: calc(50% - 58px);
  }
}

.quiz__inner {
  background: #313131;
  border-radius: 3px;
  border: 1px solid #3E3E3E;
  -webkit-box-shadow: 0 0 0 10px #313131;
  box-shadow: 0 0 0 10px #313131;
  width: 100%;
  max-width: 1041px;
  margin: 0 auto 40px;
  color: #ffffff;
  padding: 45px 20px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1125px) {
  .quiz__inner {
    margin: 0 20px;
    max-width: calc(100% - 40px);
  }
}

@media (max-width: 720px) {
  .quiz__inner {
    padding-top: 85px;
  }
}

@media (max-width: 480px) {
  .quiz__inner {
    padding: 85px 10px 45px;
    margin: 0 10px;
    max-width: calc(100% - 20px);
  }
}

.quiz .section-title {
  max-width: 448px;
  margin: 0 auto 40px;
}

.quiz__title {
  font-size: 30px;
  line-height: 110%;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: Forum;
  text-align: center;
  margin-bottom: 40px;
}

@media only screen and (max-width: 640px) {
  .quiz__title {
    font-size: 22px;
    margin-bottom: 25px;
  }
}

.quiz__item {
  display: none;
}

.quiz__item.active {
  display: block;
}

.quiz__checkbox {
  display: none;
}

.quiz__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -7px;
}

@media (max-width: 720px) {
  .quiz__group {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

.quiz__label {
  width: 100%;
  max-width: 260px;
  margin: 0 7px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

@media (max-width: 720px) {
  .quiz__label {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 7px 20px;
  }
}

.quiz__label span.quiz__label-img {
  height: 204px;
  border: 1px solid #3E3E3E;
  border-radius: 3px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 23px;
}

@media (max-width: 720px) {
  .quiz__label span.quiz__label-img {
    height: 105px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    min-width: 106px;
    padding: 10px 10px 15px;
  }
}

.quiz__label span.quiz__label-text {
  opacity: 0.8;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 17px;
}

@media (max-width: 480px) {
  .quiz__label span.quiz__label-text {
    font-size: 12px;
  }
}

.quiz__label span.quiz__label-text:before,
.quiz__label span.quiz__label-text:after {
  content: ' ';
  display: block;
  border-radius: 50%;
  position: absolute;
}

.quiz__label span.quiz__label-text:before {
  background: #272727;
  border: 1px solid #3E3E3E;
  width: 16px;
  height: 16px;
  top: 196px;
  left: calc(50% - 8px);
}

@media (max-width: 720px) {
  .quiz__label span.quiz__label-text:before {
    top: 97px;
  }
}

.quiz__label span.quiz__label-text:after {
  background: #D9B784;
  -webkit-box-shadow: 0 0 10px rgba(217, 184, 134, 0.7);
  box-shadow: 0 0 10px rgba(217, 184, 134, 0.7);
  width: 8px;
  height: 8px;
  top: 200px;
  left: calc(50% - 4px);
  opacity: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

@media (max-width: 720px) {
  .quiz__label span.quiz__label-text:after {
    top: 101px;
  }
}

.quiz__label img {
  display: block;
  margin: 0 auto;
}

.quiz__input-text {
  border-bottom: 1px solid #3E3E3E;
  background-color: transparent;
  font-weight: 300;
  font-size: 16px;
  line-height: 120%;
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 5px 15px;
  color: #fafafa;
  height: 40px;
}

@media (max-width: 480px) {
  .quiz__input-text {
    padding: 5px 10px;
  }
}

.quiz__bottom {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
}

.quiz__bottom .btn {
  width: 206px;
  max-width: 206px;
  height: 60px;
}

.quiz__group-3,
.quiz__group-6,
.quiz__group-7 {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.quiz__group-3 .quiz__label,
.quiz__group-6 .quiz__label,
.quiz__group-7 .quiz__label {
  max-width: 234px;
}

@media (max-width: 720px) {

  .quiz__group-3 .quiz__label,
  .quiz__group-6 .quiz__label,
  .quiz__group-7 .quiz__label {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }

  .quiz__bottom {
    margin-top: 10px;
    gap: 10px;
  }
}

@media (max-width: 1124px) {

  .quiz__group-3,
  .quiz__group-6,
  .quiz__group-7 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.quiz__group-4,
.quiz__group-5 {
  position: relative;
  width: 100%;
  margin: 0 auto;
  min-height: 270px;
  padding: 50px 0;
}

.quiz__group-4 {
  max-width: 333px;
}

.quiz__group-4 .quiz__input-text {
  width: 100px;
  position: absolute;
}

@media (max-width: 550px) {
  .quiz__group-4 img {
    max-width: 70px;
    height: 90px;
  }
}

.quiz__group-4 .quiz__input-width {
  top: 0;
}

.quiz__group-4 .quiz__input-height {
  left: 0;
  top: 70px;
}

@media (max-width: 480px) {
  .quiz__group-4 .quiz__input-height {
    top: 170px;
  }
}

.quiz__group-4 .quiz__input-depth {
  right: 0;
  top: 140px;
}

@media (max-width: 480px) {
  .quiz__group-4 .quiz__input-depth {
    top: 170px;
  }
}

.quiz__group-5 {
  max-width: 415px;
}

.quiz__group-5 .quiz__input-text {
  width: 130px;
  position: absolute;
}

@media (max-width: 480px) {
  .quiz__group-5 .quiz__input-text {
    width: 120px;
  }
}

@media (max-width: 550px) {
  .quiz__group-5 img {
    max-width: 70px;
    height: 90px;
  }
}

.quiz__group-5 .quiz__input-left {
  top: 0;
  left: 0;
}

.quiz__group-5 .quiz__input-right {
  top: 0;
  right: 20px;
}

@media (max-width: 480px) {
  .quiz__group-5 .quiz__input-right {
    right: 0;
  }
}

.quiz__group-5 .quiz__input-height2 {
  left: 0;
  top: 70px;
}

@media (max-width: 480px) {
  .quiz__group-5 .quiz__input-height2 {
    top: 140px;
  }
}

.quiz__group-5 .quiz__input-depth2 {
  right: 0;
  top: 140px;
}

.quiz__item8 {
  max-width: 735px;
  margin: 0 auto;
}

.quiz__item8 p {
  text-align: center;
  margin: 0 auto 60px;
}

.quiz__item8 .btn-submit {
  height: 60px;
  margin-top: 30px;
}

.quiz__group-8 {
  max-width: 358px;
  margin: 0 auto;
}

@media (max-width: 360px) {
  .quiz__group-8 .btn {
    font-size: 14px;
  }
}

.quiz input.quiz__checkbox:checked+label.quiz__label span:after {
  opacity: 1;
  z-index: 1;
}

.quiz input.quiz__checkbox:checked+label.quiz__label {
  background-color: transparent;
}

.quiz__btn--prev {
  display: none;
}

.quiz__btn--prev.show {
  display: flex;
}

.quiz__btn--preview {
  background: transparent;
  border: 2px solid #b6986a;
  color: #ffffff;
}

/*quiz end*/
/*advantages start*/
.advantages__list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-top: 80px;
  padding-bottom: 50px;
}

@media (max-width: 690px) {
  .advantages__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 20px;
  }
}

.advantages__item {
  opacity: 0.9;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  max-width: 192px;
  margin-bottom: 50px;
}

@media (max-width: 690px) {
  .advantages__item {
    margin-bottom: 0;
    font-size: 16px;
  }

  .advantages__item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.advantages__item::before {
  content: ' ';
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.advantages__item:nth-child(1)::before {
  background: url(../img/icon/idea.svg) center/contain no-repeat;
}

.advantages__item:nth-child(2)::before {
  background: url(../img/icon/eye.svg) center/contain no-repeat;
}

.advantages__item:nth-child(3)::before {
  background: url(../img/icon/list.svg) center/contain no-repeat;
}

/*advantages end*/
/*stock start*/
.stock {
  background: url(../img/stock-bg.png) center/cover no-repeat;
  background-size: 78%;
  background-position-x: left;
}

@media (max-width: 940px) {
  .stock {
    background-position-y: bottom;
    background-size: 100%;
  }
}

@media (max-width: 600px) {
  .stock {
    padding-top: 0;
  }

  .advantages__item::before {
    margin: 0 auto 5px;
    width: 55px;
    height: 55px;
  }
}

.stock .section-title {
  text-align: left;
}

@media (max-width: 940px) {
  .stock .section-title {
    text-align: center;
  }
}

.stock .subtitle {
  margin: 0 0 40px;
}

.stock__container {
  min-height: 500px;
}

@media (max-width: 940px) {
  .stock__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    min-height: initial;
  }
}

.stock__img {
  width: 100%;
  max-width: 50%;
}

@media (max-width: 940px) {
  .stock__img {
    max-width: 100%;
    padding: 30px 15px 0 15px;
  }

  .stock__img img {
    margin: 0 auto;
    height: auto;
  }
}

.stock__content {
  width: 100%;
  max-width: 50%;
  padding-left: 69px;
  padding-right: 15px;
  margin: 0 0 0 auto;
}

@media (max-width: 1100px) {
  .stock__content {
    padding-left: 15px;
  }
}

@media (max-width: 940px) {
  .stock__content {
    max-width: 100%;
    text-align: center;
  }

  .stock__content .subtitle {
    max-width: 556px;
    margin: 0 auto 40px;
  }

  .stock__content .btn {
    margin: 0 auto;
  }
}

/*stock end*/
/*instagram start*/
.instagram__list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 50px -15px 0;
}

@media (max-width: 1080px) {
  .instagram__list {
    margin: 50px -8px 0;
  }
}

@media (max-width: 700px) {
  .instagram__list {
    margin: 30px -5px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.instagram__item {
  margin: 0 15px 30px;
  width: 100%;
  max-width: calc(25% - 30px);
}

@media (max-width: 1080px) {
  .instagram__item {
    margin: 0 8px 16px;
    max-width: calc(25% - 16px);
  }
}

@media (max-width: 700px) {
  .instagram__item {
    margin: 0 5px 10px;
    max-width: calc(50% - 10px);
  }
}

.instagram__link {
  border-radius: 3px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.instagram__link img {
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.instagram__round {
  background-image: url(../img/icon/instagram2.svg);
  background-position: center;
  background-repeat: no-repeat;
  bottom: -20px;
  left: -43px;
}

@media (max-width: 1380px) {
  .instagram__round {
    left: 0;
  }
}

@media (max-width: 1080px) {
  .instagram__round {
    left: initial;
    right: 20%;
  }
}

@media (max-width: 700px) {
  .instagram__round {
    width: 78px;
    height: 78px;
    background-size: 36px;
    left: calc(75% - 42px);
  }
}

.instagram__round span {
  background: url(../img/icon/instagram-round.png) center/contain no-repeat;
  left: 8px;
  top: 8px;
}

@media (max-width: 700px) {
  .instagram__round span {
    width: 67px;
    height: 67px;
    left: 6px;
    top: 5px;
  }
}

/*instagram end*/
/*sale start*/
.sale {
  background: url(../img/sale-bg.png) center/cover no-repeat;
  padding-top: 0;
}

.sale__inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 550px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 75px 0;
}

@media (max-width: 700px) {
  .sale__inner {
    padding: 25px 0;
    min-height: 461px;
  }
}

.sale__content {
  max-width: 516px;
  margin: 0 15px;
}

@media (max-width: 1100px) {
  .sale__content {
    max-width: calc(50% - 30px);
  }
}

@media (max-width: 700px) {
  .sale__content {
    max-width: calc(100% - 30px);
    width: 100%;
    text-align: center;
  }

  .sale__content .btn {
    margin: 164px auto 0;
  }
}

.sale__content .section-title {
  text-align: left;
  margin-bottom: 15px;
}

@media (max-width: 700px) {
  .sale__content .section-title {
    text-align: center;
  }
}

.sale__content .subtitle {
  margin: 0 0 50px 0;
}

.sale__img {
  max-width: 505px;
  margin: 0 15px;
}

@media (max-width: 1100px) {
  .sale__img {
    max-width: calc(50% - 30px);
  }
}

@media (max-width: 700px) {
  .sale__img {
    max-width: 287px;
    width: 100%;
    height: 124px;
    margin: 0;
    position: absolute;
    left: calc(50% - 143px);
    bottom: 115px;
  }

  .sale__img img {
    margin: auto;
  }
}

@media (max-width: 640px) {
  .sale__img {
    bottom: 140px;
  }
}

@media (max-width: 350px) {
  .sale__img {
    bottom: 115px;
  }
}

/*sale end*/
/*reviews start*/
.reviews {
  padding-top: 40px;
}

@media (max-width: 640px) {
  .reviews {
    padding-top: 0;
  }
}

.reviews__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
}

.reviews__list {
  margin: 60px -19px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .reviews__list {
    margin: 60px -8px 0;
  }
}

@media (max-width: 600px) {
  .reviews__list {
    margin: 30px -8px 0;
  }
}

.reviews__item {
  margin: 0 19px 55px;
  width: 100%;
  max-width: calc(33.333% - 38px);
}

@media (max-width: 920px) {
  .reviews__item {
    max-width: calc(50% - 16px);
    margin: 0 8px 55px;
  }
}

@media (max-width: 630px) {
  .reviews__item {
    max-width: calc(100% - 16px);
    margin: 0 8px 20px;
  }

  .reviews__item:not(:last-child) {
    border-bottom: 1px solid #D0D0D0;
    padding-bottom: 20px;
  }

  .reviews__item:last-child {
    margin-bottom: 0;
  }
}

.reviews__content {
  margin: 0;
}

.reviews__top {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.reviews__top img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  margin-right: 20px;
  filter: grayscale(1);
}

.reviews__name {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  opacity: 0.9;
  font-style: normal;
}

.reviews__text {
  opacity: 0.7;
  font-size: 14px;
  line-height: 140%;
  margin: 0;
}

@media (max-width: 600px) {
  .reviews__top {
    margin-bottom: 10px;
  }
}

/*reviews end*/
/*how-we-work start*/
.how-we-work__list {
  margin: 55px -10px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1100px) {
  .how-we-work__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .how-we-work__list {
    margin: 20px -10px 0;
  }
}

.how-we-work__item {
  width: 100%;
  max-width: calc(20% - 20px);
  text-align: center;
  margin: 0 10px 20px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

@media (max-width: 1100px) {
  .how-we-work__item {
    max-width: calc(33.333% - 20px);
  }
}

@media (max-width: 700px) {
  .how-we-work__item {
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 500px) {
  .how-we-work__item {
    max-width: calc(100% - 20px);
  }
}

.how-we-work__img {
  width: 66px;
  height: 66px;
  margin: 0 auto 23px;
}

.how-we-work__title {
  min-height: 46px;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  opacity: 0.9;
}

@media (max-width: 500px) {
  .how-we-work__title {
    min-height: initial;
  }

  .how-we-work__img {
    margin: 0 auto 10px;
  }

  .how-we-work__title,
  .how-we-work__text {
    margin: 10px 0;
  }
}

.how-we-work__text {
  font-size: 14px;
  line-height: 140%;
  opacity: 0.7;
}

/*how-we-work end*/
/*question-form__section start*/
.question-form__section {
  background: url(../img/question-form__section.png) center no-repeat;
  background-position-y: 200px;
}

.question-form {
  background: #313131;
  border-radius: 3px;
  border: 1px solid #3E3E3E;
  -webkit-box-shadow: 0 0 0 10px #313131;
  box-shadow: 0 0 0 10px #313131;
  max-width: 447px;
  margin: 60px auto 110px;
  color: #ffffff;
  text-align: center;
  padding: 50px 44px;
}

@media (max-width: 600px) {
  .question-form {
    padding: 30px 15px;
    max-width: calc(100% - 20px);
    margin: 50px auto 50px;
  }
}

.question-form p {
  opacity: 0.7;
  font-size: 14px;
  line-height: 140%;
}

.question-form .consent {
  opacity: 0.7;
  font-weight: 300;
  font-size: 12px;
  line-height: 140%;
}

.question-form .consent a {
  color: #ffffff;
  text-decoration: underline;
}

.question-form__form {
  text-align: center;
}

.question-form__form .input {
  margin-bottom: 20px;
}

.question-form__form .btn-submit {
  margin: 10px 0 20px;
}

.question-form__form input::-webkit-input-placeholder,
.question-form__form input:-moz-placeholder,
.question-form__form input::-moz-placeholder,
.question-form__form input:-ms-input-placeholder {
  text-align: center;
}

/*question-form__section end*/
/*about start*/
.about {
  background: #262626;
  padding: 100px 0;
  color: #ffffff;
  min-height: 480px;
  margin-bottom: 65px;
}

@media (max-width: 840px) {
  .about {
    padding: 8vw 0;
  }
}

@media (max-width: 700px) {
  .about {
    padding: 35px 0 120px;
    margin-bottom: 165px;
    min-height: initial;
  }
}

.about .section-title {
  text-align: left;
}

@media (max-width: 1120px) {
  .about .section-title {
    max-width: 380px;
  }
}

.about__content {
  width: 100%;
  max-width: 50%;
  font-size: 14px;
  line-height: 140%;
  opacity: 0.7;
  margin: 0 15px;
}

@media (max-width: 1120px) {
  .about__content {
    padding-right: 20px;
  }
}

@media (max-width: 700px) {
  .about__content {
    max-width: 100%;
    padding-right: 0;
  }
}

.about__content p:not(:last-child) {
  margin-bottom: 20px;
}

.about__img {
  position: absolute;
  width: 100%;
  max-width: 567px;
  top: 0;
  right: 15px;
  border-radius: 3px;
  overflow: hidden;
}

@media (max-width: 1240px) {
  .about__img {
    max-width: calc(50% - 45px);
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 445px;
  }

  .about__img img {
    height: 100%;
    min-height: 100%;
    max-width: initial;
    width: initial;
    -o-object-fit: cover;
    object-fit: cover;
    height: 445px;
  }
}

@media (max-width: 1120px) {
  .about__img {
    min-height: 510px;
    max-width: calc(50% - 35px);
  }

  .about__img img {
    height: 510px;
  }
}

@media (max-width: 1030px) {
  .about__img {
    min-height: 550px;
  }

  .about__img img {
    height: 550px;
  }
}

@media (max-width: 700px) {
  .about__img {
    max-width: 288px;
    min-height: 225px;
    bottom: -236px;
    left: calc(50% - 144px);
    top: initial;
  }

  .about__img img {
    height: 225px;
  }
}

.about__round {
  background-image: url(../img/icon/L.svg);
  background-repeat: no-repeat;
  background-position: center;
  right: -55px;
  top: -38px;
}

@media (max-width: 1410px) {
  .about__round {
    right: calc(50% - 115px);
    top: -55px;
  }
}

@media (max-width: 1120px) {
  .about__round {
    right: calc(50% - 88px);
  }
}

@media (max-width: 700px) {
  .about__round {
    top: initial;
    bottom: -300px;
    right: calc(50% - 57px);
  }
}

.about__round span {
  background: url(../img/icon/about-round.png) center/contain no-repeat;
  left: 8px;
  top: 8px;
}

/*about end*/
/*question start*/
.question {
  padding-bottom: 120px;
}

@media (max-width: 710px) {
  .question {
    padding-bottom: 70px;
  }
}

.question__img,
.question__akk {
  width: 100%;
  margin: 0 15px;
  max-width: calc(50% - 30px);
  margin-top: 55px;
}

@media (max-width: 910px) {

  .question__img,
  .question__akk {
    max-width: calc(100% - 30px);
  }
}

.question__akk {
  padding: 30px 20px;
}

@media (max-width: 1300px) {
  .question__akk {
    max-width: calc(50% - 40px);
    margin: 0 25px 0 15px;
  }
}

@media (max-width: 910px) {
  .question__akk {
    max-width: 625px;
    margin: 50px auto 0;
  }
}

@media (max-width: 710px) {
  .question__akk {
    margin: 40px auto 0;
    max-width: calc(100% - 50px);
  }
}

@media (max-width: 710px) {
  .question__img {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .question__akk {
    margin-top: 30px;
  }
}

.question__item {
  margin-bottom: 20px;
}

.question__title {
  min-height: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 20px;
  opacity: 0.9;
  font-size: 16px;
  line-height: 140%;
  border-radius: 3px;
  border: 1px solid #D0D0D0;
  cursor: pointer;
}

.question__title:after {
  content: "+";
  font-weight: 600;
  font-size: 26px;
  line-height: 32px;
  color: #B39465;
  margin-left: 10px;
}

@media (max-width: 600px) {
  .question__title:after {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}

.question__item.active .question__title:after {
  content: "-";
}

.question__content {
  display: none;
  padding: 20px;
  opacity: 0.7;
}

.question__img img {
  margin: 0 auto;
}

.question__img-content {
  margin: 0 auto;
}

.question__img-content .img-label__staff {
  font-weight: normal;
}

.question__img-content a {
  color: #B39465;
  display: inline-block;
  border-bottom: 1px dashed #B39465;
}

@media (max-width: 910px) {
  .question__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.question__akk,
.question__img-content,
.contacts__content {
  background: #FAFAFA;
  border: 1px solid #D0D0D0;
  -webkit-box-shadow: 0 0 0 10px #fafafa, 0px 42px 111px rgba(0, 0, 0, 0.27);
  box-shadow: 0 0 0 10px #fafafa, 0px 42px 111px rgba(0, 0, 0, 0.27);
  border-radius: 3px;
}

/*question end*/
/*contacts start*/
.contacts {
  padding-top: 0;
}

@media (max-width: 630px) {
  .contacts__map {
    height: 912px;
  }

  .contacts__map iframe {
    height: 912px;
  }
}

.contacts__content {
  position: absolute;
  max-width: 370px;
  top: 20px;
  left: calc(50% - 625px);
  padding: 35px 40px;
  -webkit-box-shadow: 0 0 0 10px #fafafa;
  box-shadow: 0 0 0 10px #fafafa;
}

@media (max-width: 1300px) {
  .contacts__content {
    left: 25px;
  }
}

@media (max-width: 630px) {
  .contacts__content {
    top: 40px;
    left: 25px;
    padding: 35px 25px;
  }
}

@media (max-width: 480px) {
  .contacts__content {
    left: 25px;
    max-width: calc(100% - 50px);
  }
}

.contacts__content .section-title {
  text-align: left;
}

.contacts__title {
  opacity: 0.8;
  font-weight: 300;
  font-size: 12px;
  line-height: 120%;
  margin-bottom: 10px;
}

.contacts__item {
  font-style: normal;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 110%;
  margin-bottom: 15px;
  font-family: Forum;
  display: block;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.social__link {
  display: block;
  margin-right: 15px;
}

.social .icon {
  width: 32px;
  height: 32px;
}

/*contacts end*/
/*footer start*/
.footer__container {
  padding-top: 50px;
  padding-bottom: 50px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .footer__container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.footer .logo__img {
  padding-bottom: 20px;
  border-bottom: 1px solid #D0D0D0;
}

@media (max-width: 480px) {
  .footer .logo__img {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.footer .logo {
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .footer .logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer .logo .logo__text {
    margin-left: 0;
    margin-top: 20px;
  }
}

.footer__copy,
.footer__politics {
  font-weight: 300;
  font-size: 12px;
  line-height: 130%;
  display: inline;
  color: rgba(13, 13, 13, 0.8);
}

.footer__politics {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .footer__politics {
    display: block;
    margin-top: 5px;
  }
}

@media (max-width: 1200px) {
  .footer__menu {
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
    width: 100%;
    margin-bottom: 36px;
  }
}

@media (max-width: 660px) {
  .footer__menu-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer__menu-list a {
    white-space: nowrap;
  }
}

.footer__menu-link {
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 15px;
  font-weight: 600;
  font-size: 12px;
  line-height: 120%;
}

@media (max-width: 660px) {
  .footer__menu-link {
    padding: 5px 30px 5px 0;
  }
}

@media (max-width: 1200px) {
  .footer__main {
    width: 100%;
    max-width: 66.666%;
  }
}

@media (max-width: 660px) {
  .footer__main {
    max-width: 100%;
  }
}

.footer__contacts {
  margin-left: 20px;
}

@media (max-width: 1200px) {
  .footer__contacts {
    width: 100%;
    max-width: calc(33.333% - 20px);
  }
}

@media (max-width: 660px) {
  .footer__contacts {
    max-width: 100%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 40px;
    margin-left: 0;
  }
}

.footer__text {
  margin: 0;
  font-weight: 300;
  font-size: 12px;
  line-height: 120%;
  opacity: 0.8;
  margin-bottom: 10px;
}

.footer__callback {
  color: #D9B784;
  font-size: 16px;
  line-height: 120%;
  opacity: 0.8;
  display: inline-block;
  border-bottom: 1px dashed #D9B784;
}

/*footer end*/
/*popup form start*/
.popup-form {
  border: 1px solid #3E3E3E;
  border-radius: 3px;
  background: #313131;
  -webkit-box-shadow: 0 0 0 10px #313131;
  box-shadow: 0 0 0 10px #313131;
  color: #ffffff;
  text-align: center;
  max-width: 447px;
  width: 100%;
  padding: 50px 45px;
}

@media (max-width: 720px) {
  .popup-form {
    padding: 40px 20px;
  }
}

.popup-form a {
  color: #ffffff;
}

.popup-form p {
  opacity: 0.7;
  font-size: 14px;
}

.popup-form p.consent {
  font-size: 12px;
  margin: 10px 0 0;
}

.popup-form .input {
  margin-bottom: 20px;
}

.popup-form .btn-submit {
  margin-top: 10px;
}

.ok {
  /* display: none; */
}

.ok p {
  text-align: center;
  color: #D9B784;
  text-transform: uppercase;
  font-size: 50px;
  line-height: 110%;
  font-family: Forum;
  margin: 0;
}

.fancybox-content {
  padding: 10px;
  border-radius: 12px;
  background: #313131;
}

.fancybox-button svg path {
  fill: #ffffff;
}

.fancybox-slide--html .fancybox-close-small {
  right: 5px;
  top: 5px;
}

/*popup form end*/
/*politika start*/
.politika {
  background: #DEDEDE;
}

.politika .header {
  height: 110px;
  background: #DEDEDE;
  color: #2E2E2E;
}

.politika .header .header__menu-link,
.politika .header .logo__text,
.politika .header .header__text,
.politika .header .header__mail,
.politika .header .header__burger {
  color: #2E2E2E;
  opacity: 1;
}

.politika .header .header__menu-link:hover {
  color: #B39465;
}

.politika .header__popup .header__menu-link {
  color: #ffffff;
}

.politika .header__mail .icon {
  fill: #2E2E2E;
}

.politika .content__inner {
  padding: 30px 30px 80px;
  margin: auto;
  max-width: 1310px;
}

@media screen and (max-width: 480px) {
  .politika h1 {
    line-height: 105%;
    font-size: 24px;
  }

  .politika .content__inner {
    padding: 30px 20px 80px;
  }
}

/*politika end*/
body.compensate-for-scrollbar {
  margin-right: 0;
}

/*error page start*/
.page_error_block {
  display: flex;
  flex-wrap: wrap;
  padding: 194px 0 80px;
  align-items: center;
}

.description {
  width: 100%;
  max-width: 601px;
  margin-bottom: 115px;
}

.subtitle404 {
  font-size: 70px;
  line-height: 110%;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Forum;
}

.descr_text404 {
  font-weight: 300;
  font-size: 18px;
  line-height: 130%;
  opacity: .8;
}

.btn-mainpage {
  color: #B39465;
  text-decoration: underline;
}

.image {
  margin: auto;
  width: 100%;
  max-width: calc(100% - 601px);
}

/*error page end*/
.fancybox-is-open .fancybox-bg {
  opacity: .4;
}