@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');


/* variables */
/* default */
html, body {
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  font-size: 16px;
  color: #231f20;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

ul, ol {
  padding: 0;
  margin: 0;
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
}

p {
  padding: 0;
  margin: 0;
}

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

.wrapper {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100vh;
}

.limiter {
  max-width: 1171px;
  margin-left: auto;
  margin-right: auto;
}

.centered {
  text-align: center;
}

.flexible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: normal;
}
.butbot {
	text-align:center;max-width:400px;margin:0 auto 40px auto !important;
}

.d-none {
  display: none;
}

/* components */
/** links and btns **/
a.link {
  font-weight: 500;
  color: #231f20;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

a.link:hover {
  color: #5234fd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a.link:active, a.link:focus {
  color: #2402e2;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a.link--white {
  font-weight: normal;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

a.link--white:hover {
  color: #d9d9d9;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a.link--white:active, a.link--white:focus {
  color: #bfbfbf;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a.button {
  background-color: #00c15f;
  text-align: center;
  padding: 20px 10px;
  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;
  width: 100%;
  height: 100%;
  color: #ffffff;
  border-radius: 3px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

a.button:hover {
  background-color: #009d4d;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a.button:active, a.button:focus {
  background-color: #00db6c;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a.heavy-btn {
  font-weight: 700;
  text-decoration: none;
  color: #231f20;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

a.heavy-btn:hover {
  color: #5234fd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor:pointer;
}

a.purple-btn {
  display: block;
  padding: 20px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #5234fd;
  border: 2px solid #5234fd;
  border-radius: 3px;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a.purple-btn:hover {
  background-color: #5234fd;
  color: #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

button.submit {
  border-radius: 3px;
  background-color: #00c15f;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  border: none;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  padding: 20px;
  width: 100%;
  display: block;
}

button.submit:hover {
  background-color: #007539;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/** Titles **/
h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
}

h1.title--big {
  font-size: 2.75rem;
  font-weight: 700;
}

h2.title {
  font-size: 2.125rem;
  color: #231f20;
  font-weight: 300;
}

h2.another-title {
  font-weight: 600;
  font-size: 1.75rem;
  color: #5234fd;
}

h1.inside-title {
  font-size: 2.5rem;
  font-weight: 300;
}

h2.heavy-title {
  text-transform: uppercase;
  font-size: 1.375rem;
  font-weight: 700;
}

h1.long-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 2.125rem;
}

/** header **/
.header {
  padding: 20px 0 40px;
  background-color: #ffffff;
}

.header-wrap {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo {
  max-width: 170px;
}

.header-logo__link {
  width: 100%;
}

.header-right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-right__tel {
  margin-right: 45px;
}

.header-right__tel a {
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  color: #231f20;
  position: relative;
  padding-left: 31px;
  display: block;
}

.header-right__tel a span {
  color: #f0502b;
}

.header-right__tel a::before {
  content: '';
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #f0502b url("../img/default/phone_icon.svg") no-repeat center;
  background-size: 13px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header-right__mnu {
  margin-left: 65px;
  position: relative;
  cursor: pointer;
}

.header-right__mnu::before {
  content: 'Меню';
  color: #231f20;
  font-weight: 600;
  position: absolute;
  left: -65px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header-right__mnu span {
  display: block;
  background-color: #f0502b;
  width: 35px;
  height: 3px;
  margin-bottom: 5px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.header-right__mnu span:last-child {
  margin-bottom: 0;
}

.header-right__mnu.turning {
  position: absolute;
  right: 20px;
  top: 40px;
  z-index: 1001;
}

.header-right__mnu.turning::before {
  display: none;
}

.header-right__mnu.turning span:nth-child(3) {
  display: none;
}

.header-right__mnu.turning span {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.header-right__mnu.turning span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header-right__mnu.turning span:nth-child(2) {
  -webkit-transform: rotate(-45deg) translateY(-6px) translateX(5px);
          transform: rotate(-45deg) translateY(-6px) translateX(5px);
}

/** menu **/
.menu {
  z-index: 1000;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  background-color: #f5f5f5;
  padding: 40px 0;
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
  -webkit-transition: -webkit-transform .5s ease-in-out;
  transition: -webkit-transform .5s ease-in-out;
  transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
}

.menu.opened {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform .5s ease-in-out;
  transition: -webkit-transform .5s ease-in-out;
  transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
}

.menu-wrap {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu-nav {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% - 30px);
}

.menu-nav__link {
  width: 25%;
  margin-bottom: 30px;
}

.menu-nav__link:last-child, .menu-nav__link:nth-last-child(2), .menu-nav__link:nth-last-child(3), .menu-nav__link:nth-last-child(4) {
  margin-bottom: 0;
}

.menu-socials {
  width: 30px;
}

.menu-socials__link {
  display: block;
  margin-bottom: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-size: 100%;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  will-change: transform;
}

.menu-socials__link:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.menu-socials__link:last-child {
  margin-bottom: 0;
}

.menu-socials__link.vk {
  background: url("../img/default/vk_icon.svg") no-repeat center;
}

.menu-socials__link.inst {
  background: url("../img/default/inst_icon.svg") no-repeat center;
}

.menu-socials__link.fb {
  background: url("../img/default/fb_icon.svg") no-repeat center;
}

.menu-socials__link.yt {
  background: url("../img/default/yt_icon.svg") no-repeat center;
}
/** consultation block **/
.consultation {
  background: #e0eaff url("../img/backgrounds/consultation_bg.svg") no-repeat center;
  padding: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.consultation-title {
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: 15px;
}

.consultation-subtitle {
  width: 100%;
  text-align: center;
  color: #231f20;
  margin-bottom: 30px;
}

.consultation-btn a.button {
  padding: 23px 33px 20px;
}

.consultation-tel {
  margin: 0 20px;
}

.consultation-tel a {
  text-decoration: none;
  color: #231f20;
  font-size: 1.25rem;
  font-weight: 700;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.consultation-tel a:hover {
  color: #4c4345;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.consultation-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.consultation-socials__item {
  display: block;
  margin-right: 10px;
  width: 33px;
  height: 33px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.consultation-socials__item:last-child {
  margin-right: 0;
}

.consultation-socials__item.wa_icon {
  background-image: url("../img/default/wa_icon.svg");
}

.consultation-socials__item.viber_icon {
  background-image: url("../img/default/viber_icon.svg");
}

/** inside heading**/
.inside {
  position: relative;
  background: #f2f6ff url("../img/backgrounds/inside_bg.svg") no-repeat;
  background-position: left;
}

.inside-container {
  width: 50%;
  position: relative;
  padding: 80px 0;
}

.inside-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 49%;
}

.inside-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.inside-breadcrumbs {
  position: absolute;
  top: 20px;
  left: 0;
}

.inside-title {
  padding-bottom: 30px;
}

.inside-text {
  padding-bottom: 55px;
  line-height: 180%;
  max-width: 88%;
}

.inside-text span {
  font-weight: 600;
}

.inside-callback__title {
  font-size: 1.5rem;
  font-weight: 300;
  padding-bottom: 25px;
}

.inside-callback-form {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 30px;
}

.inside-callback-form input {
  width: 48%;
  border: 2px solid #d4dfeb;
  border-radius: 3px;
  background-color: #ffffff;
  max-width: 270px;
  height: 60px;
}

.inside-callback-form input[type="text"] {
  padding: 22px 20px 20px 27px;
  font-size: 1.125rem;
  color: #231f20;
}

.inside-callback-form input::-webkit-input-placeholder {
  color: #868686;
}

.inside-callback-form input:-ms-input-placeholder {
  color: #868686;
}

.inside-callback-form input::-ms-input-placeholder {
  color: #868686;
}

.inside-callback-form input::placeholder {
  color: #868686;
}

.inside-callback-form input:focus {
  outline: none;
}

.inside-callback-form a.button {
  width: 48%;
  text-align: center;
  height: 60px;
  max-width: 270px;
}

/** breadcrumbs **/
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumbs__item {
  font-size: .75rem;
  color: #231f20;
  text-decoration: none;
  margin-right: 5px;
  padding-right: 10px;
  position: relative;
}

.breadcrumbs__item:hover {
  text-decoration: underline;
}

.breadcrumbs__item::after {
  content: '>';
  font-size: .75rem;
  color: #231f20;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.breadcrumbs__item:last-child {
  margin-right: 0;
  padding-right: 0;
}

.breadcrumbs__item:last-child::after {
  display: none;
}

/** Card **/
.card {
  width: 31.5%;
  margin-right: 2.75%;
  margin-bottom: 40px;
}

.card:last-child, .card:nth-last-child(2), .card:nth-last-child(3) {
  margin-bottom: 0;
}

.card:nth-child(3n) {
  margin-right: 0;
}

.card__photo {
  width: 100%;
  height: 0;
  padding-bottom: 66.6%;
  position: relative;
}

.card__photo img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.card-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}

.card-info__item {
  position: relative;
  padding-left: 25px;
  font-size: .6875rem;
}

.card-info__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.card-info__author {
  margin-right: 20px;
}

.card-info__author::before {
  width: 15px;
  height: 14px;
  background-image: url("../img/default/user_icon.svg");
}

.card-info__watches {
  position: relative;
}

.card-info__watches::before {
  width: 19px;
  height: 12px;
  background-image: url("../img/default/watches_icon.svg");
}

.card__title {
  font-size: 1.125rem;
  font-weight: 600;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.card__title:hover {
  color: #5234fd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/** Long Heading**/
.long-heading {
  min-height: 40vh;
  background-color: #231f20;
  padding: 20px 0 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.long-heading-breadcrumbs {
  padding-bottom: 160px;
}

.long-heading-breadcrumbs a {
  color: #ffffff;
}

.long-heading-breadcrumbs a::after {
  color: #ffffff;
}

.long-heading__label {
  padding-top: 25px;
}

.long-heading__info {
  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-top: 100px;
}

.long-heading__info .card-info__item {
  color: #ffffff;
}

.long-heading__info .card-info__author::before {
  background-image: url("../img/default/user_icon--white.svg");
}

.long-heading__info .card-info__watches::before {
  background-image: url("../img/default/watches_icon--white.svg");
}

/** label **/
.label {
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid #ffffff;
  font-size: .75rem;
  border-radius: 3px;
  background-color: transparent;
  color: #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.label:hover {
  color: #231f20;
  background-color: #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/** photo block **/
.photo-block {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.photo-block img {
  width: 49.5%;
}

/** article **/
.article {
  padding-top: 40px;
}

.article-title {
  padding-top: 40px;
}

.article-subtitle {
  padding: 40px 0 30px;
}

.article .text.blue {
  margin: 0 -30px;
  width: calc(100% + 60px);
  background-color: #f2f6ff;
  padding: 30px;
  line-height: 165%;
}

/** blocks list and block**/
.blocks-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 40px 0 40px;
}

.block {
  width: 31.5%;
  margin-right: 2.75%;
  margin-bottom: 30px;
  background-color: #ffffff;
  border: 2px solid #d4dfeb;
}

.block-title {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 15px 25px;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.block:hover .block-title {
  color: #5234fd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.block:last-child, .block:nth-last-child(2), .block:nth-last-child(3) {
  margin-bottom: 0;
}

.block:nth-child(3n + 1) {
  margin-right: 0;
}

.block:first-child {
  margin-right: 0;
  width: 100%;
}

/** accordion **/
.accordion {
  border-bottom: 2px solid #e0eaff;
  padding: 25px 50px 0px 35px;
}

.accordion:last-child {
  border: none;
}

.accordion.active {
  padding-bottom: 30px;
}

.accordion.active .accordion-heading {
  color: #5234fd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.accordion.active .accordion-heading::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.accordion-heading {
  font-size: 1.625rem;
  font-weight: 600;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-bottom: 20px;
  cursor: pointer;
}

.accordion-heading::before {
  content: '';
  width: 22px;
  height: 2px;
  position: absolute;
  background-color: #5234fd;
  left: -35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.accordion-heading::after {
  content: '';
  width: 2px;
  height: 22px;
  position: absolute;
  background-color: #5234fd;
  left: -24.5px;
  top: 50%;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.accordion-content {
  line-height: 150%;
  display: none;
}

body.opened-modal {
  overflow: hidden;
  min-width: 320px;
}

body.opened-modal .calculating-left {
  z-index: 0;
}

body.opened-modal .overlay {
  z-index: 111111;
  opacity: 1;
  visibility: visible;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 40px 0 80px;
}

body.opened-modal .popup {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all .8s ease-in-out;
  transition: all .8s ease-in-out;
  opacity: 1;
  visibility: visible;
  height: auto;
}

body.another-modal {
  overflow: hidden;
  min-width: 320px;
}

body.another-modal .calc-form, body.another-modal .calculator, body.another-modal .popup {
  display: none !important;
}

body.another-modal .overlay {
  z-index: 111111;
  opacity: 1;
  visibility: visible;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 40px 0 80px;
}

body.another-modal .another-popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all .8s ease-in-out;
  transition: all .8s ease-in-out;
  opacity: 1;
  visibility: visible;
  height: auto;
}

.another-popup {
  display: none;
  padding: 20px;
  background-color: #ffffff;
  border-top: 4px solid #5234fd;
}

body.calculator-opened {
  overflow: hidden;
  min-width: 320px;
}

body.calculator-opened .calculating-left {
  z-index: 0;
}

body.calculator-opened .overlay {
  opacity: 1;
  z-index: 111;
  visibility: visible;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  min-height: 100vh;
  overflow-y: auto;
  background-color: #f2f6ff;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  border: 20px solid #ffffff;
}

.popup {
  padding: 20px;
  background-color: #ffffff;
  border-top: 4px solid #5234fd;
  -webkit-transform: translateY(-300px);
          transform: translateY(-300px);
  -webkit-transition: all .8s ease-in-out;
  transition: all .8s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.popup-line {
  height: 1px;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
  background-color: #5234fd;
}

.popup-title {
  text-align: center;
  padding-bottom: 20px;
}

.popup-subtitle {
  font-size: 1.125rem;
  text-align: center;
  font-weight: 600;
  padding-bottom: 65px;
}

.popup-row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 80%;
  margin: 0 auto;
  padding-bottom: 50px;
}

.popup-questions__title {
  font-weight: 600;
  font-size: 1.125rem;
  padding-bottom: 23px;
}

.popup-questions__text {
  font-size: .875rem;
  padding-bottom: 15px;
}

.popup-questions__tel {
  font-size: 1.25rem;
  font-weight: 700;
  padding-bottom: 15px;
}

.popup-questions__socials {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup-questions__socials span {
  margin-right: 13px;
  font-size: .875rem;
  font-weight: 700;
}

.popup-questions__socials a:nth-child(2) {
  margin-right: 10px;
}

.popup-results__price {
  padding-bottom: 35px;
  font-size: 3.125rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup-results__price .result-price {
  color: #5234fd;
  font-weight: 700;
  margin-left: 10px;
}

.popup-results__price span {
  color: #5234fd;
  font-weight: 700;
  margin-left: 8px;
}

.popup-results__days {
  padding-left: 75px;
  position: relative;
}

.popup-results__days::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 51px;
  height: 51px;
  background: url("../img/default/calendar_icon.svg") no-repeat center;
}

.popup-results__days .result-days {
  font-size: 1.75rem;
  font-weight: 600;
}

.popup-results__days .result-days::after {
  content: 'дней';
  margin-left: 5px;
}

.popup-results__days span {
  margin-bottom: 10px;
  font-size: .875rem;
  font-weight: 600;
}

.form {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 45px 20px 25px;
  background: #e0eaff url("../img/backgrounds/form_bg.png") no-repeat center;
  background-size: 100%;
  text-align: center;
}

.form-close {
  width: 74px;
  height: 74px;
  background: url("../img/default/close_icon.svg") no-repeat center;
  position: absolute;
  right: 35px;
  top: 35px;
  cursor: pointer;
}

.form-title {
  padding-bottom: 25px;
}

.form-subtitle {
  padding-bottom: 24px;
  font-weight: 600;
}

.form-subtitle:nth-child(2) {
  max-width: 50%;
}

.form-input {
  margin-bottom: 25px;
  max-width: 370px;
  width: 100%;
}

.form-submit {
  max-width: 370px;
  width: 100%;
  margin-bottom: 40px;
}

.form-contacts {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}

.form-contacts__tel {
  margin-right: 22px;
  font-size: 1.25rem;
  font-weight: 600;
}

.form-contacts__social:nth-child(2) {
  margin-right: 10px;
}

.form-policy {
  max-width: 60%;
  font-size: .75rem;
  line-height: 150%;
}

.form-policy a {
  color: #231f20;
}

/** inputs **/
input.input {
  border: 2px solid #d4dfeb;
  background-color: #ffffff;
  width: 100%;
}

input.input[type="text"] {
  padding: 24px 27px;
  font-size: 1.125rem;
  color: #231f20;
}

input.input::-webkit-input-placeholder {
  color: #868686;
}

input.input:-ms-input-placeholder {
  color: #868686;
}

input.input::-ms-input-placeholder {
  color: #868686;
}

input.input::placeholder {
  color: #868686;
}

input.input:focus {
  outline: none;
}

/** slick dots **/
.slick-dots {
  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;
  list-style: none;
  font-size: 0;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  padding: 30px 0;
  width: 100%;
}

.slick-dots li {
  margin-right: 10px;
}

.slick-dots li button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: none;
  background-color: #e0e6fa;
  cursor: pointer;
  font-size: 0;
}

.slick-dots li button:focus {
  outline: none;
}

.slick-dots li.slick-active button {
  background-color: #5234fd;
}

.slick-dots li:last-child {
  margin-right: 0;
}

/* pages */
.home {
  text-align: center;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: rgba(35, 31, 32, 0.56);
  color: #ffffff;
  padding: 220px 0 202px;
  position: relative;
}

.home .video {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
}

.home-title {
  padding-bottom: 40px;
}

.home-subtitle {
  max-width: 60%;
  font-size: 2rem;
  padding-bottom: 50px;
}

.home-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.home-form input {
  width: 31.6%;
  border-radius: 3px;
  border: none;
}

.home-form input:focus {
  outline: none;
}

.home-form input[type="text"] {
  padding: 23px 27px;
  font-size: 1.125rem;
  color: #231f20;
}

.home-form input:placeholder {
  color: #868686;
}

.home-form button {
  width: 31.6%;
  border: none;
  background-color: transparent;
  position: relative;
}

.home-form button a.button {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.advantages {
  padding: 80px 0;
}

.advantages.another {
  background: #f2f6ff url("../img/backgrounds/advantages_bg.svg") no-repeat center;
  background-size: 100%;
  padding: 55px 0;
}

.advantages-title {
  padding-bottom: 70px;
}

.advantages-list {
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
}

.advantages-list__item {
  width: 20%;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.advantages-list__item-photo {
  padding-bottom: 30px;
}

.advantages-list__item-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.pricing {
  padding: 80px 0;
  background: url("../img/backgrounds/pricing_bg.svg") no-repeat center;
  background-size: 100% 100%;
  background-color: #f2f6ff;
}

.pricing.inside {
  background-image: none;
  background-color: #ffffff;
}

.pricing-title {
  padding-bottom: 35px;
}

.pricing-list {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 35px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pricing-list__item {
  width: 23%;
  border: 3px solid #5234fd;
}

.pricing-list__item > * {
  padding-left: 13px;
  padding-right: 13px;
}

.pricing-list__item-photo {
  max-height: 250px;
  padding: 0;
}

.pricing-list__item-title {
  font-size: 1.25rem;
  color: #5234fd;
  font-weight: 600;
  margin: 20px 0;
}

.pricing-list__item-price {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1px;
}

.pricing-list__item-price span {
  font-weight: 800;
}

.pricing-list__item-price .podklyuch {
	font-size:1.0rem;
}

.pricing-list__item-descr {
  font-size: .75rem;
  margin-bottom: 13px;
}

.pricing-list__item-descr2 {
font-size:1.2rem;	
font-weight:500;
}

.pricing-descr {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.pricing-descr__item {
  width: 23%;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 171%;
}

.pricing-houses {
  background-image: none;
  background-color: #ffffff;
}

.pricing-houses .pricing-list__item {
  width: 31.5%;
  height: auto;
}

.pricing-houses .pricing-descr {
  margin-bottom: 23px;
}

.pricing-houses .pricing-descr__item {
  width: 31.5%;
}

.portfolio {
  padding: 80px 0;
}

.portfolio.single-page {
  padding-top: 30px;
}

.portfolio-title {
  padding-bottom: 30px;
}

.works {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}

.works__item {
  width: 48.7%;
  margin-bottom: 30px;
  overflow: hidden;
}

.works__item:hover .works__item-title {
  color: #5234fd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.works__item-gallery {
  max-width: 100%;
  max-height: 371px;
  position: relative;
}

.works__item-wrapper {
  border: 2px solid #d4dfeb;
  border-top: none;
  padding: 20px 60px 30px;
}

.works__item-title {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  padding-bottom: 23px;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.works__item-geo {
  text-align: center;
  padding-bottom: 25px;
}

.works__item-geo span {
  position: relative;
  padding-left: 30px;
  font-size: .875rem;
  font-weight: 500;
}

.works__item-geo span::before {
  content: '';
  width: 24px;
  height: 28px;
  background: url("../img/default/geo_icon.svg") no-repeat center;
  position: absolute;
  left: 0;
  bottom: 0;
}

.works__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.works__item-info span {
  position: relative;
  font-size: .875rem;
  font-weight: 500;
  padding-left: 40px;
}

.works__item-info span::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
}

.works__item-info span:nth-child(1)::before {
  width: 30px;
  height: 30px;
  background: url("../img/default/area_icon.svg") no-repeat center;
}

.works__item-info span:nth-child(2)::before {
  width: 29px;
  height: 29px;
  background: url("../img/default/time_icon.svg") no-repeat center;
}

.works__item-info span:nth-child(3)::before {
  width: 27px;
  height: 27px;
  background: url("../img/default/apart_icon.svg") no-repeat center;
}

.works__item-info span:nth-child(4)::before {
  width: 27px;
  height: 28px;
  background: url("../img/default/wallet_icon.svg") no-repeat center;
}

.worksItemArrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 21px;
  height: 37px;
  background: url("../img/default/works-left_arrow.svg") no-repeat center;
  cursor: pointer;
}

.worksItemLeft {
  left: 15px;
}

.worksItemRight {
  background-image: url("../img/default/works-right_arrow.svg");
  right: 15px;
}

.calculating {
  padding: 80px 0 0;
  background: url("../img/backgrounds/calculating_bg.svg") no-repeat center;
  background-size: cover;
}

.calculating-wrap {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.calculating-left {
  width: calc(78% - 8.5%);
}

.calculating-right {
  width: 22%;
}

.calculating-right img {
  height: 100%;
}

.calculating-title {
  padding: 25px 0 40px;
}

.calculating-text {
  padding-bottom: 40px;
  line-height: 175%;
}

.calculating-btn {
  max-width: 370px;
}

.design {
  padding: 80px 0;
}

.design.single-page {
  padding-top: 30px;
}

.design-title {
  padding-bottom: 30px;
}

.design-subtitle {
  padding-bottom: 10px;
  line-height: 171%;
}

.design-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.design-list .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: normal !important;
      -ms-flex-align: normal !important;
          align-items: normal !important;
}

.design-list__item {
  width: 31.6%;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.design-list__item:hover .design-list__item-title {
  color: #5234fd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.design-list__item-photo {
  max-height: 240px;
}

.design-list__item-title {
  border: 2px solid #d4dfeb;
  border-top: 0;
  padding: 25px 20px 20px;
  font-size: 1.125rem;
  font-weight: 600;
  height: 100%;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.materials {
  padding: 180px 0 140px;
  background: #f2f6ff url("../img/backgrounds/materials_bg.png") no-repeat right;
}

.materials-title {
  padding-bottom: 35px;
}

.materials-text {
  max-width: 47.2%;
  padding-bottom: 35px;
}

.materials-text__paragraph {
  margin-bottom: 20px;
}

.materials-text__paragraph:last-child {
  margin-bottom: 0;
}

.clients {
  padding: 80px 0;
  background: #ffffff;
}

.clients-title {
  padding-bottom: 60px;
}

.clients-slider__item {
  text-align: center;
}

.clients-slider__item img {
  margin: 0 auto;
}

.team {
  padding: 80px 0;
}

.team-title {
  padding-bottom: 40px;
}

.team-list {
  padding-bottom: 70px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.team-list__item {
  text-align: center;
  width: 23.1%;
}

.team-list__item-photo {
  background-color: #f2f6ff;
  margin-bottom: 25px;
  height: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 15px 0;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.team-list__item-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-text__paragraph {
  margin-bottom: 35px;
}

.documents {
  padding: 80px 0 0;
}

.documents-title {
  padding-bottom: 40px;
}

.documents-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.documents-list > div {
  width: calc(25% - 22.5px);
}

.documents-list__item {
  padding: 18px;
  background-color: #ffffff;
  border: 8px solid #d4e2ff;
  display: inline-block;
}

.documents-list__item img {
  width: 230px;
  height: 330px;
  display: block !important;
}

.documents-list__item div {
  display: block !important;
}

.reviews {
  padding: 80px 0;
}

.reviews.single-page .reviews-list {
  -webkit-box-pack: normal;
      -ms-flex-pack: normal;
          justify-content: normal;
}

.reviews.single-page .reviews-list__item {
  width: 100%;
}
.reviews.single-page .reviews-list__item:nth-last-child(2) {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .reviews-list__item {
    display: none;
  }
  .reviews-list__item:nth-child(1),
  .reviews-list__item:nth-child(2),
  .reviews-list__item:nth-child(3),
  .reviews-list__item:nth-child(4) {
    display: block;
  }
  .reviews-list.all .reviews-list__item {
    display: block;
  }
}
.reviews-title {
  padding-bottom: 30px;
}

.reviews-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 20px;
}

.reviews-list__item {
  width: 48.7%;
  background-color: #f2f6ff;
  padding: 40px 35px;
  margin-bottom: 30px;
}

.reviews-list__item-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 25px;
  overflow: hidden;
}
.reviews-list__item-photo img {
  width: 100%;
}

.reviews-list__item-info {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.reviews-list__item-text {
  font-size: .875rem;
  font-style: italic;
  line-height: 171%;
}
@media (max-width: 450px) {
  .reviews-list__item-text p a {
   font-size: .75rem;
  }

}
.form-success {
  padding: 20px;
  border: 1px solid green;
  color: green;
  font-weight: 600;
  max-width: 100%;
  text-align: center;
  display: none;
}
.director .form-success {
  width: calc(50% - 15px);
}
.dreaming .form-success {
  margin-top: -20px;
  width: 370px;
}
.another-popup .form-success {
  max-width: 370px;
  width: 100%;
  margin-top: -15px;
  margin-bottom: 20px;
}
.calc-form .form-success {
  max-width: 370px;
  width: 100%;
  margin-top: -15px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .dreaming .form-success {
    width: 100%;
  }
  
  .tabs li a {
    border: none;
   }
   .tabs li a.active {
	   border:1px solid;
   }
}
@media (max-width: 1200px) {
  .director .form-success {
    width: 100%;
    margin-top: 20px;
  }
}
.reviews-list__item-link {
  margin-top: 20px;
  font-size: .75rem;
}

.reviews-list__item-link a {
  color: #231f20;
}

.reviews-list__item:nth-child(1) {
  background: #f2f6ff url("../img/backgrounds/review1_bg.svg") no-repeat;
  background-position: 400px 40px;
}

.reviews-list__item:nth-child(2) {
  background: #f2f6ff url("../img/backgrounds/review2_bg.svg") no-repeat;
  background-position: 345px 0px;
}

.reviews-list__item:nth-last-child(2) {
  margin-bottom: 0;
  background: #f2f6ff url("../img/backgrounds/review3_bg.svg") no-repeat;
  background-position: 400px 55px;
}

.reviews-list__item:last-child {
  margin-bottom: 0;
  background: #f2f6ff url("../img/backgrounds/review4_bg.svg") no-repeat;
  background-position: right 50px;
}

.reviews-more {
  padding-top: 20px;
}

.how {
  padding: 80px 0;
}

.how.another .how-illustration__item-photo {
  padding-left: 0;
}

.how.another .how-illustration__item-photo:before, .how.another .how-illustration__item-photo::after {
  display: none;
}

.how-title {
  padding-bottom: 25px;
}

.how-illustration {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.how-illustration__item {
  width: 29.5%;
  margin-bottom: 47px;
  position: relative;
}

.how-illustration__item-photo {
  position: relative;
  padding-left: 20px;
  margin-bottom: 30px;
}

.how-illustration__item-photo::before {
  content: '1';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border: 2px solid #5234fd;
  border-radius: 50%;
  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;
  font-size: 1.375rem;
  color: #5234fd;
  font-weight: 500;
}

.how-illustration__item-photo::after {
  content: '';
  width: 90px;
  height: 20px;
  background: url("../img/default/arrow_icon--long.svg") no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.how-illustration__item:nth-child(2) .how-illustration__item-photo::before {
  content: '2';
}

.how-illustration__item:nth-child(3) .how-illustration__item-photo::before {
  content: '3';
}

.how-illustration__item:nth-child(3) .how-illustration__item-photo::after {
  display: none;
}

.how-illustration__item:nth-child(4) {
  margin-bottom: 0;
}

.how-illustration__item:nth-child(4) .how-illustration__item-photo::before {
  content: '4';
}

.how-illustration__item:nth-child(5) {
  margin-bottom: 0;
}

.how-illustration__item:nth-child(5) .how-illustration__item-photo::before {
  content: '5';
}

.how-illustration__item:nth-child(6) {
  margin-bottom: 0;
}

.how-illustration__item:nth-child(6) .how-illustration__item-photo::before {
  content: '6';
}

.how-illustration__item:nth-child(6) .how-illustration__item-photo::after {
  display: none;
}

.how-illustration__item-title {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 25px;
}

.how-illustration__item-text {
  font-size: 1rem;
  line-height: 28px;
}

.consultation-block {
  padding: 50px 0 100px;
}
.dream-design {
  padding: 80px 0;
  background: #f2f6ff url("../img/backgrounds/design-dream_bg.png") no-repeat right;
  background-size: 100% 100%;
}

.dream-design__title {
  padding-bottom: 35px;
}

.dream-design__text {
  padding-bottom: 70px;
  line-height: 171%;
  max-width: 40%;
}

.dream-design__text p:nth-child(1) {
  margin-bottom: 20px;
}

.expert {
  width: 100%;
  margin: 80px auto;
  background: #e0eaff url("../img/backgrounds/expert_bg.svg") no-repeat center;
  padding: 30px 70px 40px 100px;
  overflow: hidden;
  position: relative;
}

.expert::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: #f0502b;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: -50px;
  top: -50px;
  z-index: 1;
}

.expert::before {
  content: '';
  position: absolute;
  z-index: 2;
  right: 5px;
  top: 10px;
  width: 35px;
  height: 25px;
  background: url("../img/default/success_icon.svg") no-repeat center;
  background-size: cover;
}

.expert-title {
  text-align: right;
}

.expert-wrap {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.expert-photo {
  width: 170px;
  margin-right: 30px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #ffffff;
  position: relative;
}

.expert-photo img {
  position: absolute;
  bottom: 0;
 /* left: 15px; */
 left: 0px; 
}

.expert-text {
  width: 650px;
}

.expert-text__name {
  font-weight: 600;
  padding-bottom: 12px;
}

.expert-text__specs {
  font-size: .75rem;
  padding-bottom: 20px;
}

.expert-text__sayed {
  font-size: .875rem;
  line-height: 171%;
  padding-bottom: 40px;
}

.expert-text__consultation {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.protection {
  background: #f4f3f2 url("../img/backgrounds/protection_bg.png") no-repeat;
  margin: 50px auto 100px;
  padding: 80px 70px;
  background-size: cover;
}

.protection-title {
  padding-bottom: 35px;
  max-width: 48%;
}

.protection-title h2.another-title {
  font-size: 2.625rem;
}

.protection-text {
  line-height: 171%;
  max-width: 48%;
}

.steps {
  padding: 80px 0;
  background: #f2f6ff url("../img/backgrounds/steps_bg.svg") no-repeat center;
}

.steps-title {
  padding-bottom: 30px;
}

.steps-subtitle {
  font-size: 1.125rem;
  padding-bottom: 45px;
  line-height: 171%;
}

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

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

.step-photo {
  width: 65%;
}

.step-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.step-descr {
  width: 35%;
  padding-left: 55px;
}

.step-descr__title {
  font-size: 1.45rem;
  font-weight: 600;
  padding-bottom: 35px;
}

.step-descr__list {
  list-style: none;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

.step-descr__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  cursor: default;
}

.step-descr__list-item:last-child {
  margin-bottom: 0;
}

.step-descr__list-item:hover {
  color: #5234fd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.step-descr__list-item::before {
  content: '';
  width: 15px;
  height: 1px;
  background-color: #231f20;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.gallery {
  padding: 80px 0;
}

.gallery-title {
  padding-bottom: 30px;
}

.gallery-subtitle {
  font-size: 1.125rem;
  line-height: 171%;
  padding-bottom: 45px;
}

.gallery-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: (250px)[2];
      grid-template-rows: repeat(2, 250px);
  grid-column-gap: 4px;
  grid-row-gap: 4px;
}

.gallery-list img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-list img:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 3 / 2;
}

.process {
  padding: 80px 0;
  background: #f2f6ff url("../img/backgrounds/process_bg.svg") no-repeat center;
}

.process-title {
  padding-bottom: 30px;
}

.process-heading {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 40px;
}

.process-subtitle {
  font-size: 1.125rem;
}

.process-btn {
  position: relative;
  padding-right: 65px;
}

.process-btn::after {
  content: '';
  width: 55px;
  height: 20px;
  background: url("../img/default/arrow_icon--purple.svg") no-repeat center;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.process-btn:hover::after {
  -webkit-transform: translateY(-50%) translateX(5px);
          transform: translateY(-50%) translateX(5px);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.process-sliders {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.process-sliders .process-slider {
  width: 48.7%;
  position: relative;
}

.process-sliders .process-slider .slider-item {
  position: relative;
}

.process-sliders .process-slider .slider-item-info {
  position: absolute;
  left: 15px;
  bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.process-sliders .process-slider .slider-item-info > div {
  padding: 10px 15px;
  background-color: #ffffff;
  font-size: .875rem;
  font-weight: 600;
  margin-right: 2px;
}

.process-sliders .process-slider .slider-item-info > div:last-child {
  margin-right: 0;
}

.process-sliders .process-slider .slider-item__progress {
  position: relative;
}

.process-sliders .process-slider .slider-item__progress::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: #5234fd;
}

.process-sliders .process-slider .slider-item__progress.first::after {
  width: 25%;
}

.process-sliders .process-slider .slider-item__progress.second::after {
  width: 45%;
}

.services {
  padding: 80px 0;
}

.services-title {
  padding-bottom: 40px;
}

.services-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.services-list__item {
  width: 31.5%;
  margin-right: 2.75%;
  margin-bottom: 30px;
  text-decoration: none;
}

.services-list__item:hover .services-list__item-title {
  color: #5234fd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.services-list__item-photo {
  max-height: 240px;
  overflow: hidden;
  height: 100%;
}

.services-list__item-photo img {
  height: 100%;
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.services-list__item-title {
  border: 2px solid #d4dfeb;
  border-top: none;
  font-size: 1.125rem;
  font-weight: 600;
  color: #231f20;
  padding: 15px 25px;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.services-list__item:nth-child(3n) {
  margin-right: 0;
}

.designers {
  padding: 80px 0;
}

.designers-title {
  padding-bottom: 35px;
}

.designers-subtitle {
  padding-bottom: 35px;
  line-height: 200%;
  max-width: 65%;
}

.designers-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.designers-list__item {
  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;
  width: 25%;
  margin-bottom: 60px;
}

.designers-list__item:nth-last-child(2), .designers-list__item:nth-last-child(3), .designers-list__item:nth-last-child(1) {
  margin-bottom: 0;
}

.designers-list__item-name {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding-top: 20px;
  font-weight: 600;
}

.designers-list__item-photo {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.offer {
  padding: 80px 0;
}

.offer-wrap {
  background: #f4f3f2 url("../img/backgrounds/design-offer_bg.png") no-repeat center;
  padding: 30px 50px 40px 70px;
  background-size: cover;
}

.offer__subtitle {
  color: #f0502b;
  font-weight: 700;
  padding-bottom: 20px;
}

.offer__title {
  padding-bottom: 20px;
  max-width: 45%;
}

.offer__title h2.another-title {
  font-size: 2.125rem;
}

.offer__text {
  max-width: 45%;
  padding-bottom: 27px;
  line-height: 171%;
}

.offer__text span {
  font-weight: 600;
}

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

.offer__btn a.button {
  width: auto;
  padding: 23px 23px 20px;
}

.sale {
  padding: 80px 0;
  background: url("../img/backgrounds/design-sale_bg.png") no-repeat center;
  background-size: cover;
}

.sale__title {
  padding-bottom: 40px;
  max-width: 30%;
}

.sale__oldprice {
  font-size: 2.5rem;
  padding-bottom: 10px;
  position: relative;
  display: inline-block;
}

.sale__oldprice span {
  font-weight: 700;
}

.sale__oldprice::after {
  content: '';
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #231f20;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sale__newprice {
  font-size: 4.5rem;
  color: #f0502b;
  padding-bottom: 40px;
  font-weight: 600;
}

.sale__newprice span {
  font-weight: 700;
}

.sale__text {
  max-width: 55%;
  font-size: 1.5rem;
  line-height: 171%;
  padding-bottom: 45px;
}

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

.sale__btn a.button {
  width: auto;
  padding: 22px 39px 20px;
}

.sale.design {
  position: relative;
}

.sale.design::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: url("../img/default/design-sale_label.png") no-repeat center;
  left: 0;
  top: 0;
}

.design-steps {
  padding: 80px 0;
}

.design-steps__title {
  padding-bottom: 30px;
}

.design-steps-wrap {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.design-steps__descr {
  width: 61.5%;
}

.design-steps__descr-text {
  padding-bottom: 35px;
  font-weight: 600;
  font-style: 1.125rem;
}

.design-steps__descr-list {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.design-steps__descr-list ul {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  list-style: none;
}

.design-steps__descr-list ul li {
  position: relative;
  font-size: .875rem;
  padding-left: 10px;
  margin-bottom: 20px;
}

.design-steps__descr-list ul li:last-child {
  margin-bottom: 0;
}

.design-steps__descr-list ul li::before {
  content: '';
  width: 2px;
  height: 2px;
  background-color: #231f20;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
}

.design-steps__example {
  width: 30%;
  color: #231f20;
  text-decoration: none;
}

.design-steps__example:hover {
  color: #5234fd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.design-steps__example-titling {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 22px;
  border: 2px solid #d4dfeb;
  border-top: none;
  margin-top: -5px;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.another-section .another-title {
  position: relative;
  padding-right: 190px;
  padding-bottom: 0;
  margin-bottom: 30px;
}

.another-section .another-title::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 168px;
  height: 37px;
  background: url("../img/default/another-heading_label.png") no-repeat center;
}

.another-section .another-text {
  font-size: 1.125rem;
  padding-bottom: 40px;
}

.another-section .another-subtitle {
  padding-bottom: 25px;
  font-weight: 600;
  font-size: 1.125rem;
}

.another-section .another-list {
  font-size: 1.125rem;
  padding-bottom: 30px;
}

.another-section .another-list li {
  margin-bottom: 15px;
}

.another-section .another-list li:last-child {
  margin-bottom: 0;
}

.another-section .another-note {
  font-size: .75rem;
}

.listing {
  padding: 80px 0 0;
}

.listing-title {
  padding-bottom: 30px;
}

.listing-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.listing-list__item {
  width: 48.7%;
  border: 2px solid #d4dfeb;
  margin-bottom: 30px;
}

.listing-list__item:hover .listing-list__item-title {
  color: #5234fd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.listing-list__item-title {
  padding: 25px;
  text-align: center;
  font-weight: 600;
  font-size: 1.25rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.listing-list__item-photo {
  height: 370px;
  overflow: hidden;
}

.listing-list__item-photo img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.listing-list__item:nth-child(odd) {
  margin-right: 2.6%;
}

.listing-list__item:last-child {
  margin-bottom: 0;
}

.listing-list__item:nth-last-child(2) {
  margin-bottom: 0;
}

.work {
  padding: 80px 0;
}

.work-heading {
  padding-bottom: 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.work-info {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.work-info__item {
  font-weight: 600;
  position: relative;
  padding-left: 45px;
  margin-right: 50px;
}

.work-info__item:last-child {
  margin-right: 0;
}

.work-info__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("../img/default/geo_icon.svg");
}

.work-info__item:nth-child(2)::before {
  background-image: url("../img/default/area_icon.svg");
}

.work-info__item:nth-child(3)::before {
  background-image: url("../img/default/time_icon.svg");
}

.work-info__item:nth-child(4)::before {
  background-image: url("../img/default/apart_icon.svg");
}

.work-info__item:nth-child(5)::before {
  background-image: url("../img/default/wallet_icon.svg");
}

.work-author {
  font-weight: 600;
}

.work-photos__block {
  margin-bottom: 60px;
}

.work-photos__block:last-child {
  margin-bottom: 0;
}

.work-photos__block-title {
  font-size: 1.625rem;
  font-weight: 600;
  padding-bottom: 20px;
}

.work-photos__block-slider {
  position: relative;
}

.project {
  padding: 80px 50px;
}

.project-author {
  padding-bottom: 55px;
}

.project-author__photo {
  margin-bottom: 25px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f4f3f2;
  overflow: hidden;
}

.project-author__name {
  font-weight: 600;
  margin-bottom: 25px;
}

.project-author__descr {
  max-width: 85%;
}

.project-author__descr p {
  font-size: .875rem;
  color: #000000;
  margin-bottom: 20px;
}

.project-author__descr p:last-child {
  margin-bottom: 0;
}

.project-subtitle {
  padding-bottom: 25px;
  font-size: 1.625rem;
  font-weight: bold;
}

.project-gallery {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.project-gallery img {
  margin-bottom: 30px;
}

.conditions {
  padding: 80px 0;
}

.conditions__text {
  padding-bottom: 35px;
}

.conditions__text p {
  margin-bottom: 30px;
}

.conditions__text p:last-child {
  margin-bottom: 0;
}

.conditions-list {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.conditions-list__item {
  width: 43%;
  margin-bottom: 50px;
}

.conditions-list__item:nth-child(3) {
  margin-bottom: 0;
}

.conditions-list__item:nth-child(4) {
  margin-bottom: 0;
}

.conditions-list__item-photo {
  margin-bottom: 25px;
}

.conditions-list__item-title {
  margin-bottom: 25px;
}

.conditions-list__item-descr {
  line-height: 171%;
}

.conditions-list__item-descr ul {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  list-style: none;
}

.conditions-list__item-descr ul li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 20px;
}

.conditions-list__item-descr ul li:last-child {
  margin-bottom: 0;
}

.conditions-list__item-descr ul li::before {
  content: '';
  width: 3px;
  height: 3px;
  background-color: #231f20;
  border-radius: 50%;
  left: 0;
  top: 11px;
  position: absolute;
}

.feedback {
  padding: 80px 0;
  background: url("../img/backgrounds/feedback_bg.png") no-repeat center;
}

.feedback-title {
  padding-bottom: 22px;
  max-width: 50%;
}

.feedback-title h2.another-title {
  font-size: 2.25rem;
}

.feedback-subtitle {
  font-size: 1.25rem;
  color: #5234fd;
  font-weight: 600;
  padding-bottom: 35px;
  max-width: 50%;
}

.feedback-contacts {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 40px;
}

.feedback-contacts__item {
  margin-right: 40px;
}

.feedback-contacts__item span {
  font-weight: 600;
  margin-left: 5px;
}

.feedback-contacts__item:last-child {
  margin-right: 0;
}

.feedback-form {
  max-width: 45%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.feedback-form input {
  border: 2px solid #d4dfeb;
  border-radius: 3px;
  width: 49%;
}

.feedback-form input:focus {
  outline: none;
}

.feedback-form input[type="text"] {
  padding: 20px 20px 22px 27px;
  font-size: 1.125rem;
  color: #231f20;
}

.feedback-form input::-webkit-input-placeholder {
  color: #868686;
}

.feedback-form input:-ms-input-placeholder {
  color: #868686;
}

.feedback-form input::-ms-input-placeholder {
  color: #868686;
}

.feedback-form input::placeholder {
  color: #868686;
}

.feedback-form button {
  border: none;
  background-color: transparent;
  width: 49%;
}

.designer {
  padding: 35px 0 30px;
}

.designer-info {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.designer-info__photo {
  min-width: 270px;
}

.designer-info__about {
  width: calc(100% - 300px);
}

.designer-info__about-name {
  font-size: 2.125rem;
  font-weight: 300;
  padding-bottom: 17px;
}

.designer-info__about-specs {
  padding-bottom: 30px;
  font-size: 1.125rem;
}

.designer-info__about-descr {
  font-size: .875rem;
  line-height: 171%;
}

.windows {
  padding: 80px 0;
}

.windows-title {
  padding-bottom: 60px;
}

.windows-list {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.windows-list__item {
  width: 26%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 55px;
}

.windows-list__item-title {
  font-weight: 600;
  margin-top: 10px;
}

.windows-prices {
  padding: 80px 0 60px;
  background: #f2f6ff url("../img/backgrounds/windows-prices_bg.svg") no-repeat center;
  background-size: cover;
}

.windows-prices__title {
  padding-bottom: 40px;
}

.windows-prices-list {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.windows-prices-list__item-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 15px;
}

.windows-prices-list__item-size {
  margin-bottom: 25px;
}

.windows-prices-list__item-price {
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-block;
  border-bottom: 2px solid #5234fd;
  margin-bottom: 30px;
}

.windows-prices-list__item-price span {
  font-weight: 700;
}

.suggestion {
  padding: 80px 0;
  background: #f2f6ff url("../img/backgrounds/suggestion_bg.svg") no-repeat center;
  background-size: cover;
}

.suggestion-title {
  padding-bottom: 30px;
}

.suggestion-subtitle {
  line-height: 171%;
  font-size: 1.125rem;
  padding-bottom: 35px;
}

.suggestion-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.suggestion-list__item {
  width: 23%;
  border: 2px solid #d4dfeb;
  margin-bottom: 30px;
  background-color: #ffffff;
}

.suggestion-list__item:hover .suggestion-list__item-title {
  color: #5234fd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.suggestion-list__item-title {
  padding: 20px 16px 20px;
  font-weight: 600;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.suggestion-list__item-photo {
  height: 175px;
  overflow: hidden;
}

.suggestion-list__item-photo img {
  width: 100%;
  height: 100%;
}

.another-gallery {
  padding: 80px 0;
}

.another-gallery__title {
  padding-bottom: 40px;
}

.another-gallery-slider {
  padding-bottom: 80px;
}

.another-gallery-slider .slider-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: (250px)[2];
      grid-template-rows: repeat(2, 250px);
  grid-column-gap: 4px;
  grid-row-gap: 4px;
}

.another-gallery-slider .slider-item a {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.another-gallery-slider .slider-item a:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 3 / 2;
}

.another-gallery-slider .slider-item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.another-gallery-text {
  line-height: 171%;
}

.another-gallery-text p {
  margin-bottom: 25px;
}

.another-gallery-text *:last-child {
  margin-bottom: 0;
}

.another-gallery-text ul {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  list-style: none;
}

.another-gallery-text ul li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 20px;
}

.another-gallery-text ul li:last-child {
  margin-bottom: 0;
}

.another-gallery-text ul li::before {
  content: '';
  width: 3px;
  height: 3px;
  background-color: #231f20;
  border-radius: 50%;
  left: 0;
  top: 11px;
  position: absolute;
}

.doors {
  padding: 80px 0;
}

.doors-title {
  padding-bottom: 30px;
}

.doors-text {
  line-height: 171%;
  padding-bottom: 25px;
}

.doors-text p {
  margin-bottom: 25px;
}

.doors-text p:last-child {
  margin-bottom: 0;
}

.doors-photos {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.doors-photos img:nth-child(1) {
  margin-right: 8px;
}

.doors-list ul {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  list-style: none;
}

.doors-list ul li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 20px;
}

.doors-list ul li:last-child {
  margin-bottom: 0;
}

.doors-list ul li::before {
  content: '';
  width: 3px;
  height: 3px;
  background-color: #231f20;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
}

.doors-about {
  padding: 25px 0 80px;
}

.doors-about__title {
  padding-bottom: 30px;
}

.doors-about-list__item {
  margin-bottom: 25px;
}

.doors-about-list__item span {
  font-weight: 600;
}

.doors-about-list__item:last-child {
  margin-bottom: 0;
}

.doors-offer {
  padding: 120px 70px 60px;
  background: #f2f6ff url("../img/backgrounds/doors-offer_bg.png") no-repeat center;
  background-size: cover;
}

.doors-offer__title {
  padding-bottom: 30px;
}

.doors-offer__text {
  font-size: 1.125rem;
  line-height: 171%;
  padding-bottom: 70px;
  max-width: 50%;
}

.doors-offer__text span {
  font-weight: 600;
}

.doors-offer.doors2 {
  background-image: url("../img/backgrounds/doors2-offer_bg.png");
}

.info-section {
  padding: 80px 70px;
  background: #f2f6ff url("../img/backgrounds/info-section-mat_bg.png") no-repeat center;
  background-size: cover;
  margin: 80px auto 40px;
}

.info-section__title {
  max-width: 60%;
  padding-bottom: 25px;
}

.info-section__title h2.another-title {
  font-size: 2.625rem;
}

.materials-prices {
  padding: 80px 0;
}

.materials-prices__title {
  padding-bottom: 30px;
}

.materials-prices-block {
  margin-bottom: 60px;
}

.materials-prices-block:last-child {
  margin-bottom: 0;
}

.materials-prices-block__tables {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.materials-prices-block__subtitle {
  font-weight: 600;
  padding-bottom: 25px;
  font-size: 1.5rem;
}

.materials-prices .table {
  width: 48.7%;
  border: 2px solid #e0eaff;
}

.materials-prices .table .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px solid #e0eaff;
}

.materials-prices .table .row:last-child {
  border-bottom: none;
}

.materials-prices .table .row.heading {
  background-color: #e0eaff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.materials-prices .table .row.heading span {
  font-weight: 600;
  padding: 15px 0 !important;
}

.materials-prices .table .row.heading span:nth-child(1) {
  background-color: transparent;
}

.materials-prices .table .row span:nth-child(1) {
  margin: 10px 15px;
  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;
  width: calc(22% - 30px);
  padding: 6px 20px;
  background-color: #f9f9f9;
}

.materials-prices .table .row span:nth-child(2) {
  margin-left: 20px;
  padding-top: 30px;
  width: calc(59% - 20px);
  border-right: 2px solid #e0eaff;
}

.materials-prices .table .row span:nth-child(3) {
  padding-top: 30px;
  width: 19%;
  text-align: center;
}

.manuf {
  padding: 80px 0;
}

.manuf-title {
  padding-bottom: 60px;
}

.manuf-list {
  -webkit-box-pack: span;
      -ms-flex-pack: span;
          justify-content: span;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.manuf-list__item {
  width: 33%;
  margin-bottom: 90px;
  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;
}

.manuf-list__item:nth-last-child(3), .manuf-list__item:nth-last-child(1), .manuf-list__item:nth-last-child(2) {
  margin-bottom: 0;
}

.text {
  padding: 20px 0;
}

.text.painting-steps {
  background: #f2f6ff url("../img/backgrounds/malyarnie-rabotu-text_bg.png") no-repeat center;
  background-size: cover;
}

.text-title {
  padding-bottom: 30px;
}

.text-list {
  margin-bottom: 25px;
}

.text-list__item {
  margin-bottom: 25px;
  line-height: 171%;
}

.text-list__item span {
  font-weight: 600;
}

.text-list:last-child {
  margin-bottom: 0;
}

.text-list ul {
  list-style: none;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

.text-list ul li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 20px;
}

.text-list ul li:last-child {
  margin-bottom: 0;
}

.text-list ul li::before {
  content: '';
  width: 3px;
  height: 3px;
  background-color: #231f20;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
}

.text-list ol {
  padding: 0 0 35px;
  -webkit-padding-start: 18px;
          padding-inline-start: 18px;
}

.text-list ol li {
  margin-bottom: 15px;
}

.text-paragraph {
  margin-bottom: 25px;
  line-height: 171%;
}

.text-paragraph:last-child {
  margin-bottom: 0;
}

.painting-prices {
  padding: 80px 0 0;
}

.painting-prices__title {
  padding-bottom: 30px;
}

.painting-prices-table {
  width: 100%;
}

.painting-prices-table .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 24px;
}

.painting-prices-table .row.heading span {
  font-weight: 600;
}

.painting-prices-table .row:nth-child(odd) {
  background-color: #e0eaff;
}

.painting-prices-table .row span:nth-child(1) {
  width: 63%;
}

.painting-prices-table .row span:nth-child(2) {
  width: 21%;
}

.painting-prices-table .row span:nth-child(3) {
  width: 16%;
}

.blog {
  padding: 80px 0;
}

.blog.last {
  padding: 0 0 100px;
}

.blog-title {
  padding-bottom: 40px;
}

.blog-more {
  padding-top: 45px;
}

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

.blog.single-page .blog-card:nth-child(3) {
  margin-right: 2.75%;
}

.blog.single-page .blog-card:nth-child(3n + 1) {
  margin-right: 0;
}

.blog.single-page .blog-card:first-child {
  width: 100%;
}

.blog.single-page .blog-card:first-child .card__photo {
  width: 100%;
  padding-bottom: 50%;
}

.blog.single-page .blog-card:first-child .card__photo img {
  width: 100%;
  height: 100%;
}

.blog.single-page .blog-card:first-child .card-info {
  padding-top: 35px;
}

.blog.single-page .blog-card:first-child .card__title {
  font-size: 2.125rem;
}

.all-services {
  padding-top: 80px;
}

.all-services-text__paragraph {
  padding-bottom: 20px;
}

.all-services__title {
  padding-bottom: 35px;
}

.faq {
  padding: 80px 0 25px;
  width: 100%;
}

.faq-title {
  padding-bottom: 35px;
}

.about-us {
  padding-top: 80px;
}

.about-us__title {
  padding-bottom: 35px;
}

.about-us__text {
  padding-bottom: 20px;
  line-height: 171%;
}

.contacting {
  padding: 80px 0;
}

.contacting-title {
  padding-bottom: 35px;
}

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

.contacting-list {
  margin-bottom: 40px;
  width: 50%;
}

.contacting-list__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.contacting-list__item {
  margin-bottom: 10px;
}

.contacting-list__item:last-child {
  margin-bottom: 0;
}

.contacting-socials {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 60px;
}

.contacting-socials__item {
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  margin-right: 15px;
  display: block;
}

.contacting-socials__item:last-child {
  margin-right: 0;
}

.contacting-socials__item:nth-child(1) {
  background-image: url("../img/default/vk_icon.svg");
}

.contacting-socials__item:nth-child(2) {
  background-image: url("../img/default/inst_icon.svg");
}

.contacting-socials__item:nth-child(3) {
  background-image: url("../img/default//fb_icon.svg");
}

.contacting-socials__item:nth-child(4) {
  background-image: url("../img/default/yt_icon.svg");
}

.contacting-place > div img {
  height: 100%;
  width: 100%;
}

.contacting-place__photo {
  width: calc(50% - 30px);
}

.contacting-place__map {
  width: calc(50% + 30px);
}

.warranty-list {
  padding: 80px 0;
}

.warranty-list__item {
  width: 33%;
}

.warranty-list__item-title {
  padding: 30px 0 25px;
  font-size: 1.125rem;
  font-weight: 600;
  max-width: 265px;
}

.warranty-list__item-text {
  line-height: 171%;
  max-width: 285px;
}

.warranty-list__item:last-child .warranty-list__item-title {
  max-width: 100%;
}

.warranty-list__item:nth-child(2) .warranty-list__item-text {
  max-width: 100%;
}

.blue {
  background: #f2f6ff;
  padding: 80px 0;
}

.blue-title {
  padding-bottom: 35px;
}

.blue-text {
  line-height: 171%;
  padding-bottom: 35px;
}

.blue-list__item {
  line-height: 171%;
  margin-bottom: 15px;
}

.blue-list__item span {
  font-weight: 600;
}

.calculator {
  padding: 80px 0 80px;
}

.calculator-status {
  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-top: 35px;
}

.calculator-status span {
  color: #373737;
  position: relative;
  font-weight: 700;
  width: 30px;
  height: 30px;
  border: 3px solid #373737;
  border-radius: 50%;
  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;
  margin-left: 15px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.calculator-status span.done {
  border-color: #5234fd;
  background-color: #5234fd;
  color: #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.calculator-status span.done::after {
  background-color: #5234fd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.calculator-status span::after {
  content: '';
  position: absolute;
  right: calc(100% + 3px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 3px;
  background-color: #373737;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.calculator-status span:first-child {
  margin-left: 0;
}

.calculator-status span:first-child::after {
  display: none;
}

.calculator-next {
  padding-top: 30px;
  max-width: 570px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.calculator-next a.button {
  max-width: 200px;
  cursor: pointer;
}

.calculator-blocks {
  max-width: 570px;
  margin: 0 auto;
}

.calculator-aps {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 100px 0 50px;
}

.calculator-aps__area {
  margin-right: 90px;
}

.calculator-aps__area .input {
  position: relative;
  padding-right: 35px;
  padding-top: 17px;
}

.calculator-aps__area .input::after {
  content: 'м²';
  font-size: 1.5rem;
  font-weight: 600;
  position: absolute;
  right: 0;
  bottom: 0;
}

.calculator-aps__area .input input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #231f20;
}

.calculator-aps__area .input input:focus {
  outline: none;
}

.calculator-aps__area .input input[type="text"] {
  text-align: center;
  padding: 5px 0 2px;
}

.calculator-aps__rooms .rooms-list input {
  display: none;
}

.calculator-aps__rooms .rooms-list label {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  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;
  font-size: .875rem;
  border: 1px solid transparent;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.calculator-aps__rooms .rooms-list label.current {
  border: 2px solid #5234fd;
  color: #5234fd;
}

.calculator-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 20px;
  display: block;
}

.calculator-list {
  padding-top: 50px;
}

.calculator-list__item {
  border: 2px solid #d4dfeb;
  background-color: #ffffff;
  min-height: 200px;
  margin-bottom: 20px;
  -webkit-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
  cursor: pointer;
}

.calculator-list__item.checked {
  border-color: #5234fd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.calculator-list__item:last-child {
  margin-bottom: 0;
}

.calculator-list__item-photo {
  width: 32%;
}

.calculator-list__item-photo img {
  width: 100%;
  height: 100%;
}

.calculator-list__item-info {
  width: 68%;
  padding: 35px 65px 20px 30px;
}

.cli-info__heading {
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
}

.cli-info__heading input {
  margin-right: 13px;
  visibility: hidden;
  position: relative;
  width: 24px;
  height: 24px;
}

.cli-info__heading input::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  visibility: visible;
  border: 2px solid #5234fd;
  border-radius: 50%;
}

.cli-info__heading input::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #5234fd;
  left: 50%;
  top: 50%;
  visibility: visible;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.cli-info__heading input:checked::before {
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.cli-info__descr {
  font-size: .875rem;
  line-height: 171%;
}

.calculator-aps {
  display: none;
}

.calculator-opened .popup {
  display: none !important;
}

.calculator + .popup {
  display: none;
  margin: 40px 0 0;
  height: auto;
  max-width: 970px;
  width: 100%;
}

.calc-form {
  display: none;
  opacity: 0;
  -webkit-transition: .8s ease-in-out;
  transition: .8s ease-in-out;
  background-color: #f2f6ff;
  position: relative;
}

.calc-form-back {
  position: absolute;
  left: 70px;
  top: 55px;
  z-index: 1;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.calc-form-back:hover {
  text-decoration: underline;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#bl2, #bl4, #bl5, #bl3 {
  display: none;
  opacity: 0;
  -webkit-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
}

.result {
  display: none;
}

.more {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.more-title {
  width: 100%;
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 25px;
}

.more-block {
  width: 48.3%;
  background-color: #00c15f;
  color: #ffffff;
  padding: 40px 40px 40px 120px;
  position: relative;
  cursor: pointer;
}

.more-block__title {
  font-size: 1.25rem;
  border-bottom: 1px solid #ffffff;
  display: inline-block;
  padding-bottom: 2px;
  margin-bottom: 18px;
}

.more-block__text {
  font-size: .85rem;
  line-height: 171%;
}

.more-block::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 50%;
  width: 59px;
  height: 82px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/default/popup-more1_icon.svg") no-repeat center;
  background-size: 100%;
}

.more-block:nth-child(3)::before {
  background-image: url("../img/default/popup-more2_icon.svg");
  height: 95px;
}

.landing {
  padding: 80px 0 90px;
  background: #f2f6ff url("../img/landing/landing_bg.jpg") no-repeat;
  background-position-x: right;
  background-size: 50% 100%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .landing {
   /* padding: 40px 0 0;*/
    padding: 0;
    background-image: none;
  }
}

.landing::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 200px;
  width: 152px;
  height: 183px;
  background: url("../img/landing/landing1_figure.png") no-repeat center;
}

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

.landing::before {
  content: '';
  display: block;
  position: absolute;
  left: 85px;
  top: 0;
  width: 94px;
  height: 75px;
  background: url("../img/landing/landing2_figure.png") no-repeat center;
}

@media (max-width: 1200px) {
  .landing::before {
    display: none;
  }
}

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

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

.landing-left, .landing-right {
  width: 50%;
}

@media (max-width: 1200px) {
  .landing-left, .landing-right {
    width: 100%;
  }
}

.landing-left {
  padding-right: 50px;
}

@media (max-width: 1200px) {
  .landing-left {
    padding-bottom: 35px;
    padding-right: 0;
  }
}

.landing-left__title {
  margin-bottom: 50px;
}

@media (max-width: 1200px) {
  .landing-left__title {
    margin-bottom: 25px;
  }
  .landing-left__title h2.title {
    text-align: left;
  }
}

.landing-ad {
  position: relative;
  z-index: 1;
}

.landing-ad__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .landing-ad__item {
    margin-bottom: 20px;
  }
}

.landing-ad__item:last-child {
  margin-bottom: 0;
}

.landing-ad__item-photo {
  min-width: 100px;
}

.landing-ad__item-title {
  font-size: 1.125rem;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .landing-ad__item-title {
    font-size: 1rem;
  }
}

.landing-ad__item-title span {
  font-weight: 800;
}

.landing-right {
  padding-left: 70px;
  color: #ffffff;
  position: relative;
}

@media (max-width: 1200px) {
  .landing-right {
    padding-left: 0;
    background: url("../img/landing/landing_bg.jpg") no-repeat center;
    background-size: cover;
    padding: 40px 15px 50px;
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
  .landing-right::after {
    display: none;
  }
}
/*
.landing-right::after {
  content: '';
  position: absolute;
  width: 248px;
  height: 500px;
  left: 524px;
  top: 0;
  background: url("../img/landing/landing-phone.png") no-repeat center;
  background-size: 100%;
}
*/
.landing-right__title h2.title {
  color: #ffffff;
}

@media (max-width: 1200px) {
  .landing-right__title h2.title {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .landing-right__text:nth-last-child(2) {
    margin-top: 20px;
  }
}

.landing-right > * {
  margin-bottom: 30px;
  max-width: 510px;
  width: 100%;
}

@media (max-width: 1200px) {
  .landing-right > * {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

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

.landing-right__anotherBtn a {
  width: 100%;
  display: block;
}

a.another-button {
  font-size: 1.125rem;
  padding: 20px;
  border: 1px solid #ffffff;
  border-radius: 3px;
  font-weight: 600;
  text-align: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a.another-button:hover {
  color: #5234fd;
  background-color: #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a.another-button:active, a.another-button:focus {
  background-color: #dbdbdb;
  color: #5234fd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.pricing-landing .pricing-list__item:nth-child(1) {
  position: relative;
}

.pricing-landing .pricing-list__item:nth-child(1)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 160px;
  height: 160px;
  background: url("../img/landing/flat-label.png") no-repeat center;
}
.pricing-landing {
  background: white;
}
.pricing-landing .pricing-list__item:nth-child(2) {
  border-width: 8px;
  box-sizing: content-box;
}
#screen7 {
  background: #fff;
  background-size: 100% 100%;
}
@media (max-width: 768px) {
  #screen7 {
    background: #fff;
    background-image: none;
  }
}
@media (max-width: 1200px) {
  .pricing-landing .pricing-list__item:nth-child(2) {
    border-width: 3px;
  }
}

.how-landing {
  padding: 75px 0;
}

.how-landing .how-illustration__item {
  width: 23%;
}

.how-landing .how-illustration__item:nth-child(3) .how-illustration__item-photo::after {
  display: block;
}

.how-landing .how-illustration__item:last-child .how-illustration__item-photo::after {
  display: none;
}

@media (max-width: 768px) {
  .how-landing .how-illustration__item {
    width: 100%;
  }
  .butbot {
	  text-align:center;max-width:340px;margin:0 auto 40px auto;
  }
}

.protecting-wrap {
  background-color: #f2f6ff;
  position: relative;
}

.protecting-wrap::after {
  content: '';
  position: absolute;
  top: 45px;
  left: 60px;
  width: 83px;
  height: 90px;
  background: url("../img/landing/protect-icon.png") no-repeat center;
}

@media (max-width: 1200px) {
  .protecting-wrap::after {
    left: 15px;
  }
}

@media (max-width: 600px) {
  .protecting-wrap::after {
    display: none;
  }
}

.protecting-text {
  width: calc(50% + 15px);
  padding: 150px 85px 60px 55px;
}

@media (max-width: 1200px) {
  .protecting-text {
    width: 100%;
    padding: 30px 30px 30px 110px;
  }
  .protecting-text br {
    display: none;
  }
}

@media (max-width: 600px) {
  .protecting-text {
    padding: 30px 15px;
  }
}

.protecting-text h2 {
  margin-bottom: 20px;
}

.protecting-photo {
  width: calc(50% - 15px);
}

@media (max-width: 1200px) {
  .protecting-photo {
    display: none;
  }
  .landing-left {
	  display:none;
  }
}

.protecting-photo img {
  width: 100%;
  height: 100%;
}

.materials-landing {
 /* background-size: 100% 100%;*/
  padding: 80px 0 70px;
}

.materials-landing .materials-title {
  padding-bottom: 0;
  margin-bottom: 24px;
}

.materials-landing .materials-subtitle {
  color: #5234fd;
  margin-bottom: 35px;
  font-size: 1.125rem;
  font-weight: 600;
  max-width: 50%;
}

@media (max-width: 1200px) {
  .materials-landing .materials-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .materials-landing .materials-subtitle {
    text-align: left;
  }
}

.materials-landing .materials-text {
  padding-bottom: 0;
  margin-bottom: 45px;
  max-width: 50%;
}

@media (max-width: 1200px) {
  .materials-landing .materials-text {
    max-width: 100%;
  }
}

.materials-landing .materials-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 50%;
}

@media (max-width: 1200px) {
  .materials-landing .materials-list {
    max-width: 100%;
  }
}

.materials-landing .materials-list__item {
  width: 25%;
  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;
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  .materials-landing .materials-list__item {
    width: 50%;
  }
}

.landing-list__title {
  margin-bottom: 30px;
}

.landing-list-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  .landing-list-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.landing-list__item {
  margin-right: 114px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 1200px) {
  .landing-list__item {
    margin-right: 60px;
  }
}

@media (max-width: 768px) {
  .landing-list__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0;
    width: 100%;
    margin-bottom: 40px;
  }
  .landing-list__item:last-child {
    margin-bottom: 0;
  }
}

.landing-list__item:first-child {
  margin-right: 90px;
}

@media (max-width: 1200px) {
  .landing-list__item:first-child {
    margin-right: 45px;
  }
}

.landing-list__item:last-child {
  margin-right: 0;
}

.landing-list__item img {
  height: 100px;
}

@media (max-width: 768px) {
  .landing-list__item img {
    width: 80px;
    height: auto;
    margin-right: 20px;
  }
}

.landing-list__item span {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .landing-list__item span {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .landing-list__item span {
    margin-top: 0;
  }
  .landing-list__item span br {
    display: none;
  }
}

.faq-landing .accordion:last-child {
  border-bottom: 2px solid #e0eaff;
}

.links {
  padding: 55px 0 80px;
}

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

.links-item {
  margin-right: 75px;
  color: #5234fd;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: underline;
  position: relative;
  padding-left: 75px;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

@media (max-width: 1200px) {
  .links-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }
  .links-item:last-child {
    margin-bottom: 0;
  }
}

.links-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 52px;
  height: 65px;
  background: url("../img/landing/pdf-icon.png") no-repeat center;
}

.links-item:last-child {
  margin-right: 0;
}

.links-item:hover {
  color: #7d67fd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.director {
  background: #f2f6ff url("../img/landing/director_bg.png") no-repeat center;
  background-size: 100% 100%;
  padding: 70px 0 80px;
}

@media (max-width: 1200px) {
  .director {
    padding: 40px 0 30px;
  }
}

.director-about {
  width: 345px;
  margin-right: 55px;
}

@media (max-width: 1200px) {
  .director-about {
    display: none;
  }
}

.director-about__photo {
  height: 0;
  padding-bottom: 113%;
  position: relative;
  margin-bottom: 25px;
}

.director-about__photo img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.director-about__name {
  font-weight: 600;
  margin-bottom: 12px;
}

.director-about__spec {
  font-size: .875rem;
}

.director-form {
  width: calc(100% - 345px);
}

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

.director-form__title {
  text-align: center;
  margin-bottom: 20px;
}

.director-form__subtitle {
  font-weight: 600;
  margin-bottom: 35px;
  text-align: center;
}

.director-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.director-form form input {
  width: calc(50% - 15px);
  border-radius: 3px;
  border: 2px solid #d4dfeb;
  background-color: #ffffff;
}

@media (max-width: 1200px) {
  .director-form form input {
    width: 100%;
  }
  .director-form form input:nth-child(1) {
    margin-bottom: 20px;
  }
}
.director-form form input::placeholder {
  color: #868686;
  font-size: 1.125rem;
  font-family: "Montserrat";
  font-weight: 400;
}
.director-form form input[type="text"] {
  padding: 20px 25px;
  font-size: 1.125rem;
  color: #868686;
}
.director-form form textarea::placeholder {
  color: #868686;
  font-size: 1.125rem;
  font-family: "Montserrat";
  font-weight: 400;
}
.director-form form textarea {
  width: 100%;
  margin: 30px 0;
  resize: none;
  padding: 25px;
  font-size: 1.125rem;
  border: 2px solid #d4dfeb;
  border-radius: 3px;
  min-height: 150px;
  color: #868686;
}

@media (max-width: 1200px) {
  .director-form form textarea {
    margin: 20px 0;
  }
}

.director-form form button {
  width: calc(50% - 15px);
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
}

@media (max-width: 1200px) {
  .director-form form button {
    width: 100%;
    margin-bottom: 20px;
  }
}

.director-form form button a {
  width: 100%;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

.director-form__info {
  width: calc(50% - 15px);
}

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

.director-form__info span {
  display: block;
}

.director-form__info span:nth-child(1) {
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.director-form__info span:nth-child(2) {
  font-size: 1.25rem;
  font-weight: 600;
}

.director-form__info span:nth-child(2) img:nth-child(1) {
  margin: 0 8px;
}

.director-form__note {
  text-align: center;
  margin-top: 30px;
  font-size: .625rem;
  color: #231f20;
}

@media (max-width: 1200px) {
  .director-form__note {
    text-align: left;
  }
}

.director-form__note a {
  color: inherit;
}

@media (max-width: 1200px) {
  .documents-list > div {
    width: 100%;
  }
}

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

.dreaming {
  padding: 75px 0 35px;
  background: #f2f6ff url("../img/landing/dreaming_bg.png") no-repeat center;
}

@media (max-width: 768px) {
  .dreaming {
    background-image: none;
  }
}

.dreaming-title {
  margin-bottom: 35px;
}

.dreaming-subtitle {
  margin-bottom: 25px;
}

.dreaming-form {
  margin-bottom: 50px;
}

.dreaming-form input {
  display: block;
  border-radius: 3px;
  border: 2px solid #d4dfeb;
  background-color: #ffffff;
  margin-bottom: 30px;
  width: 370px;
  max-width: 100%;
}

@media (max-width: 768px) {
  .dreaming-form input {
    width: 100%;
  }
}

.dreaming-form input[type="text"] {
  padding: 20px 25px;
  font-size: 1.125rem;
}

.dreaming-form button {
  width: 370px;
  max-width: 100%;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .dreaming-form button {
    width: 100%;
  }
}

.dreaming-form button a {
  width: 100%;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

.dreaming-note {
  text-align: center;
  margin-top: 30px;
  font-size: .625rem;
  color: #231f20;
}

.dreaming-note a {
  color: inherit;
}

.sign {
  position: relative;
  width: 260px;
  height: 260px;
  position: fixed;
  top: 30px;
  right: 100px;
  -webkit-box-shadow: 0 12px 21px rgba(21, 11, 73, 0.21);
          box-shadow: 0 12px 21px rgba(21, 11, 73, 0.21);
  background-color: #e8eeff;
  border-radius: 50%;
  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;
  text-align: center;
  line-height: 1;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: 2;
}

@media (max-width: 1250px) {
  .sign {
    display: none;
  }
}

.sign.visible {
  opacity: 1;
  -webkit-animation: pulsing 1.1s 1;
          animation: pulsing 1.1s 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.sign-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 30px 0 5px;
  color: #5234fd;
}

.sign-subtitle {
  font-size: .875rem;
  font-weight: 600;
  color: #5234fd;
  margin-bottom: 10px;
}

.sign-line {
  width: calc(100% + 4px);
  margin-left: -2px;
  margin-right: -2px;
  background: yellow url("../img/landing/lineyka.png") no-repeat center;
  background-size: 100% 100%;
  padding: 16px 0 13px;
}

.sign-line__text1 {
  margin-bottom: 5px;
  font-size: 1.25rem;
  font-weight: 600;
}

.sign-line__text2 {
  font-size: 1.875rem;
  font-weight: 600;
}

.sign-btn {
  margin-top: 29px;
}

.sign-btn a {
  padding: 13px 20px;
  border-radius: 3px;
  border: 1px solid #5234fd;
  color: #5234fd;
  font-weight: 600;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.sign-btn a:hover {
  color: #ffffff;
  background-color: #5234fd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.sign-btn a:active, .sign-btn a:focus {
  background-color: #2402e2;
  color: #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.sign-close {
  width: 19px;
  height: 19px;
  top: 0;
  right: 0;
  position: absolute;
  background: url("../img/landing/close-sign.png") no-repeat center;
  cursor: pointer;
}

@-webkit-keyframes pulsing {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  66% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulsing {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  66% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* media */
@media (max-width: 1200px) {
  .calculator + .popup {
    margin-top: 0;
    padding-top: 40px;
  }
  .form {
    padding: 45px 10px 25px;
  }
  .form-close {
    right: 15px;
    top: 15px;
    max-width: 20px;
    max-height: 20px;
  }
  .form-subtitle {
    font-size: 1rem;
    max-width: 100% !important;
  }
  .form-policy {
    max-width: 100%;
  }
  .overlay {
    border: none;
  }
  body.opened-modal .overlay {
    padding: 0;
  }
  .form-contacts__tel {
    font-size: 1rem;
  }
  body.opened-modal .popup, body.opened-modal .another-popup {
    height: inherit;
  }
  body.opened-modal .popup .form, body.opened-modal .another-popup .form {
    height: inherit;
  }
  .popup, .another-popup {
    width: 100%;
    padding: 20px 15px;
    height: 100%;
  }
  .warranty-list-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .warranty-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin-bottom: 20px;
  }
  .warranty-list__item:last-child {
    margin-bottom: 0;
  }
  .warranty-list__item-text {
    display: none;
  }
  .warranty-list__item-title {
    max-width: 100%;
    padding: 0;
    font-size: 1rem;
    margin-left: 15px;
  }
  .work-heading {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .work-author {
    margin-top: 45px;
  }
  .work-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
  }
  .work-info__item {
    margin-bottom: 35px;
  }
  .work-info__item:last-child {
    margin-bottom: 0;
  }
  .steps-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .gallery-list {
    -ms-grid-rows: (150px)[2];
        grid-template-rows: repeat(2, 150px);
  }
  .step {
    margin-bottom: 0;
    width: 49%;
    margin-bottom: 25px;
  }
  .step:nth-last-child(2), .step:last-child {
    margin-bottom: 0;
  }
  .step-photo {
    display: none;
  }
  .step-descr {
    padding-left: 0;
    width: 100%;
  }
  .suggestion-list__item {
    max-width: 290px;
    width: 100%;
    margin-right: 20px;
  }
  .manuf-list .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: normal !important;
        -ms-flex-align: normal !important;
            align-items: normal !important;
  }
  .manuf-list__item {
    max-width: 290px;
    width: 100%;
    margin-right: 20px;
    margin-bottom: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: inherit;
  }
  .reviews.single-page .reviews-list__item {
    width: 100%;
    max-width: 100%;
  }
  .design.single-page .design-list {
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
  .design.single-page .design-list__item {
    height: inherit;
    max-width: 32%;
    width: 100%;
    margin-right: 0;
    margin-bottom: 1%;
    margin-right: 1%;
  }
  .design.single-page .design-list__item:nth-child(3n) {
    margin-right: 0;
  }
  .design.single-page .design-list__item-photo {
    overflow: hidden;
    min-height: 190px;
  }
  .design.single-page .design-list__item-photo img {
    width: 100%;
  }
  .another-gallery-slider {
    padding-bottom: 0;
  }
  .doors-photos img {
    max-width: 100%;
    width: 48%;
  }
  .project {
    padding: 20px 0;
  }
  .project-gallery img {
    width: 33%;
    margin-bottom: .33%;
  }
  .listing-list__item {
    max-width: 290px;
    margin-right: 20px !important;
    margin-bottom: 0 !important;
    width: 100%;
  }
  .listing-list .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: normal !important;
        -ms-flex-align: normal !important;
            align-items: normal !important;
  }
  .listing-list .slick-slide {
    height: inherit !important;
  }
  .listing-list__item {
    margin-top: 0;
    height: 100%;
    border: 2px solid #d4dfeb;
  }
  .listing-list__item-title {
    border: none;
  }
  .services-list__item {
    max-width: 290px;
    margin-right: 20px;
  }
  .sale.design::after {
    display: none;
  }
  .sale__text {
    max-width: 90%;
  }
  .documents-list__item {
    max-width: 290px;
  }
  .reviews-list__item {
    max-width: 290px;
  }
  .blog.last {
    padding: 60px 0;
  }
  .card {
    max-width: 290px;
    width: 100%;
    margin-right: 20px !important;
    margin-bottom: 0;
  }
  .card-info {
    padding-top: 20px !important;
  }
  .card__title {
    font-size: 1.125rem !important;
  }
  .card__photo {
    padding-bottom: 150px;
  }
  .card__photo img {
    max-width: 100%;
    bottom: 0;
    right: 0;
  }
  .limiter {
    max-width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
  h2.title {
    font-size: 2rem;
  }
  .advantages-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .advantages-list__item {
    width: 48%;
    margin-bottom: 40px;
  }
  .advantages-list__item:last-child {
    display: none;
  }
  .advantages-list__item:nth-last-child(2), .advantages-list__item:nth-last-child(3) {
    margin-bottom: 0;
  }
  .works__item {
    margin-right: 20px;
    max-width: 290px;
  }
  .works__item-wrapper {
    padding: 30px;
  }
  .works__item-info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .works__item-info span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 49%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
  .works__item-info span:nth-last-child(1), .works__item-info span:nth-last-child(2) {
    margin-bottom: 0;
  }
  .works__item-gallery {
    max-height: 190px;
    overflow: hidden;
    max-width: 100%;
  }
  .works__item-gallery img {
    max-width: 100%;
    max-height: 100%;
  }
  .works__item-gallery-nav {
    display: none;
  }
  .team-list__item {
    max-width: 290px;
    margin-right: 20px;
  }
  .pricing-descr {
    display: none;
  }
  .pricing-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pricing-list__item {
    width: 49.5%;
    margin-bottom: 1%;
    text-align: center;
  }
  .pricing-list__item-photo {
    height: 250px;
  }
  .pricing-list__item-photo img {
    width: 100%;
    max-height: 100%;
  }
  .pricing-list__item:last-child {
    margin-bottom: 0;
  }
  .pricing-list__item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .home {
    padding: 110px 0 100px;
  }
  .home-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .home-form input {
    margin-bottom: 15px;
  }
  .home-form input, .home-form button {
    width: 290px;
  }
  .home-form button {
    height: 66px;
  }
  .design-list .slick-slide {
    height: inherit !important;
  }
  .design-list__item {
    margin-right: 20px;
    margin-top: 0;
    height: 100%;
    border: 2px solid #d4dfeb;
  }
  .design-list__item-title {
    border: none;
  }
  .menu {
    padding: 70px 0 40px;
  }
  .materials {
    padding: 80px;
    text-align: center;
    background-image: none;
  }
  .materials-text {
    max-width: 100%;
  }
  .header-right__mnu.turning {
    position: absolute;
    right: 10px;
    top: 30px;
    z-index: 1001;
  }
  .reviews:not(.single-page) .reviews-list__item {
    margin-right: 20px;
  }
  .calculating-left {
    width: calc(70% - 8.5%);
    padding-bottom: 80px;
  }
  .calculating-right {
    width: 30%;
  }
  .design-list__item {
    max-width: 290px;
  }
  .designers {
    padding-top: 0;
    text-align: center;
  }
  .designers-subtitle {
    max-width: 100%;
  }
  .designers-list__item {
    width: 100%;
    max-width: 200px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .expert {
    padding-left: 40px;
  }
}

@media (max-width: 960px) {
  .contacting-list {
    padding-right: 10px;
  }
  .expert {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 25px 15px 40px;
  }
  .expert-title {
    margin-right: 40px;
  }
  .expert-photo {
    margin-top: 40px;
  }
  .expert-text {
    padding-top: 25px;
    width: 100%;
  }
  .expert-text__consultation {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .expert-text__consultation .consultation-btn {
    width: 100%;
    margin-bottom: 30px;
  }
  .expert-text__consultation .consultation-tel {
    margin-left: 0;
  }
  .expert-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .design.single-page .design-list__item {
    max-width: 49%;
  }
  .design.single-page .design-list__item:nth-child(3n) {
    margin-right: 1%;
  }
  .design.single-page .design-list__item:nth-child(2n) {
    margin-right: 0;
  }
  .another-section .another-title::after {
    display: none;
  }
  .another-section .another-title {
    padding-right: 0;
  }
  .another-section .another-title h2.title {
    text-align: left;
  }
  .design-steps__example {
    display: none;
  }
  .design-steps__descr {
    width: 100%;
  }
  .feedback {
    display: none;
  }
  h2.title {
    text-align: center;
    font-size: 1.375rem;
  }
  h1.long-title {
    font-size: 1.375rem;
  }
  h2.heavy-title {
    font-size: 1.175rem;
  }
  .pricing-list {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .pricing-list__item {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
  }
  .home-subtitle {
    max-width: 100%;
  }
  .menu-nav__link {
    width: 33%;
  }
  .calculating-btn {
    margin: 0 auto;
  }
  .calculating-right {
    display: none;
  }
  .calculating-left {
    width: 100%;
    text-align: center;
  }
  .how-illustration__item {
    width: 48%;
  }
  .how-illustration__item-photo::after {
    display: block;
  }
  .how-illustration__item:nth-child(3n) .how-illustration__item-photo::after {
    display: block;
  }
  .how-illustration__item:nth-child(2n) .how-illustration__item-photo::after {
    display: none;
  }
  .long-heading-breadcrumbs {
    padding-bottom: 50px;
  }
  .designer-info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .designer-info__photo {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
  }
  .designer-info__about {
    width: 100%;
    text-align: center;
  }
  .offer-wrap {
    max-width: 100%;
    margin: 0;
    position: relative;
    padding: 300px 15px 40px;
    background-image: none;
    background-color: #f2f6ff;
  }
  .offer-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 270px;
    background: #e6eae9 url("../img/backgrounds/offer_photo-mob.png") no-repeat center;
    background-size: 100%;
  }
  .offer__title {
    max-width: 100%;
  }
  .offer__text {
    max-width: 100%;
  }
  .offer__btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .inside {
    background-image: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .inside-wrap {
    max-width: 100%;
    margin: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .inside-photo {
    position: relative;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    height: 270px;
    overflow: hidden;
  }
  .inside-photo img {
    width: 100%;
    max-width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
  }
  .inside-breadcrumbs {
    display: none;
  }
  .inside-container {
    max-width: calc(100% - 30px);
    margin: 0 15px;
    width: 100%;
    padding: 40px 0;
  }
  .inside-callback-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 20px;
  }
  .inside-callback-form input, .inside-callback-form a.button {
    width: 100%;
  }
  .inside-callback-form input {
    margin-bottom: 20px;
  }
  .inside-callback__title {
    font-size: 1.375rem;
  }
  .inside-title {
    padding-bottom: 25px;
  }
  .inside-text {
    max-width: 100%;
    padding-bottom: 40px;
  }
  h1.inside-title {
    font-size: 1.625rem;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .materials {
    padding: 300px 0 40px !important;
    position: relative;
  }
  .materials::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 270px;
    background: url("../img/backgrounds/materials-mob_bg.png") no-repeat center;
    background-size: cover;
  }
  .designer-info__about-descr {
    text-align: left;
  }
  .designers-subtitle {
    text-align: left;
  }
  .cli-info__heading {
    font-size: .75rem;
    padding-bottom: 5px;
  }
  .calculator-list__item {
    min-height: auto;
    max-height: 130px;
    overflow: hidden;
  }
  .calculator-list__item-photo {
    min-width: 120px;
    max-height: 130px;
  }
  .calculator-list__item-info {
    padding: 15px 12px 15px 10px;
  }
  .cli-info__descr {
    font-size: .625rem;
  }
  .calculator-list__item {
    margin-bottom: 20px;
    border-left: none !important;
    border-right: none !important;
  }
  .calculator {
    padding: 40px 0;
  }
  .calculator-subtitle {
    margin-left: 15px;
    margin-right: 15px;
    font-size: 1rem;
    text-align: center;
  }
  .calculator-aps {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 50px 0 25px;
    margin-left: 15px;
    margin-right: 15px;
    max-width: calc(100% - 30px);
  }
  .calculator-aps__area {
    max-width: 100%;
    margin-right: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 40px;
  }
  .calculator-aps__area input {
    width: 100%;
  }
  .calculator-aps__rooms {
    text-align: center;
    width: 100%;
  }
  .calculator-aps__rooms .rooms-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .calculator-aps__rooms .rooms-list label {
    margin-right: 20px;
  }
  .more-block {
    width: 100%;
    margin-bottom: 20px;
  }
  .more-block:last-child {
    margin-bottom: 0;
  }
  .popup-questions {
    display: none;
  }
  .popup-row {
    max-width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .popup-results {
    width: 100%;
    padding-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .calculator-next a.button {
    margin: 0 auto;
  }
  .warranty-list__item-photo {
    min-width: 70px;
    max-width: 70px;
  }
  .blocks-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .blocks-list .block {
    width: 49%;
    margin-right: 0;
    margin-bottom: 20px !important;
  }
  .blocks-list .block:last-child {
    margin-bottom: 0 !important;
  }
  .blocks-list .block-photo {
    height: 190px;
  }
  .blocks-list .block-photo img {
    width: 100%;
    height: 100%;
  }
  .protection {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 300px 15px 40px;
    background-image: none;
    position: relative;
  }
  .protection-title {
    max-width: 100%;
  }
  .protection-title h2.another-title {
    font-size: 1.25rem;
  }
  .protection-text {
    max-width: 100%;
  }
  .protection::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 270px;
    background: url("../img/backgrounds/sale_photo-mob.png") no-repeat center;
    background-size: 100%;
  }
  .step {
    width: 100%;
  }
  .step:nth-last-child(2) {
    margin-bottom: 25px;
  }
  .dream-design {
    padding: 300px 0 40px;
    background-image: none;
    background-color: #f2f6ff;
    position: relative;
  }
  .dream-design::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 270px;
    background: url("../img/backgrounds/sale_photo-mob.png") no-repeat center;
    background-size: 100%;
  }
  .dream-design__text {
    max-width: 100%;
  }
  .dream-design__more {
    text-align: center;
  }
  .materials-prices .table .row span:nth-child(1) {
    padding: 0;
  }
  .materials-prices-block__subtitle {
    margin-left: 15px;
    margin-right: 15px;
    font-size: 1.125rem;
    text-align: center;
  }
  .materials-prices-wrap {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .materials-prices__title {
    margin-left: 15px;
    margin-right: 15px;
  }
  .materials-prices-block__tables {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .materials-prices-block__tables .table {
    width: 100%;
    margin-bottom: 20px;
  }
  .materials-prices-block__tables .table:last-child {
    margin-bottom: 0;
  }
  .materials-prices-block__tables .table .row {
    padding: 10px 5px;
    position: relative;
  }
  .materials-prices-block__tables .table .row.heading {
    display: none;
  }
  .materials-prices-block__tables .table .row span:nth-child(1) {
    background-color: #f9f9f9;
    margin: 0;
    padding: 10px 15px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    min-width: calc(22% - 30px);
  }
  .materials-prices-block__tables .table .row span:nth-child(2) {
    border-right: 0;
    margin: 0;
    width: auto;
    padding: 0;
    margin-left: 15px;
    padding-bottom: 25px;
  }
  .materials-prices-block__tables .table .row span:nth-child(3) {
    margin: 0;
    padding: 0;
    border-left: none;
    width: auto;
    position: absolute;
    bottom: 8px;
    left: calc(22% + 15px);
  }
  .materials-prices-block__tables .table .row span:nth-child(3)::after {
    content: 'руб';
    margin-left: 3px;
  }
  .info-section {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 300px 15px 40px;
    background-image: none;
    background-color: #f2f6ff;
    position: relative;
    margin-bottom: 0;
  }
  .info-section__title {
    max-width: 100%;
  }
  .info-section__title h2.another-title {
    font-size: 1.625rem;
  }
  .info-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 270px;
    background: url("../img/backgrounds/info_photo-mob.png") no-repeat center;
    background-size: 100%;
  }
  .painting-prices-wrap {
    max-width: 100%;
    margin: 0;
  }
  .painting-prices-wrap .row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 15px !important;
    border-bottom: 2px solid #e0eaff;
  }
  .painting-prices-wrap .row.heading {
    display: none;
  }
  .painting-prices-wrap .row:nth-child(2) {
    border-top: 2px solid #e0eaff;
  }
  .painting-prices-wrap .row span:nth-child(1) {
    width: 100% !important;
    margin-bottom: 10px;
  }
  .painting-prices-wrap .row span:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: auto !important;
    font-weight: 700;
    margin-left: 4px;
  }
  .painting-prices-wrap .row span:nth-child(3) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: auto !important;
    font-weight: 700;
  }
  .accordion {
    padding-right: 15px;
  }
  .accordion-heading {
    font-size: 1.175rem;
  }
  a.button, a.purple-btn {
    font-size: 1rem;
  }
  h1.title--big {
    font-size: 1.375rem;
  }
  h2.another-title {
    font-size: 1.375rem;
  }
  .photo-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .photo-block img {
    width: 100%;
    margin-bottom: 15px;
  }
  .photo-block img:last-child {
    margin-bottom: 0;
  }
  .header {
    padding: 20px 0;
  }
  .header-log {
    width: 120px;
    height: 42px;
  }
  .header-right__tel {
    margin-right: 0;
  }
  .header-right__tel a {
    font-size: 14px;

  }
  .header-logo__link svg {
    max-width: 120px;
    max-height: 42px;
  }
  .home {
    padding: 100px 0;
  }
  .home-title {
    padding-bottom: 25px;
    max-width: calc(100% - 50px);
    width: 100%;
    margin: 0 auto;
  }
  .home-subtitle {
    font-size: 1rem;
    padding-bottom: 35px;
    max-width: calc(100% - 50px);
    width: 100%;
    margin: 0 auto;
  }
  .home-form input {
    margin-bottom: 25px;
  }
  .advantages-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
    margin-bottom: 25px;
  }
  .advantages-list__item:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .advantages-list__item:nth-last-child(3), .advantages-list__item:nth-last-child(2) {
    margin-bottom: 25px;
  }
  .advantages-list__item-photo {
    padding-bottom: 0;
    width: 70px;
    text-align: center;
  }
  .advantages-list__item-photo img {
    max-width: 70px;
    max-height: 70px;
  }
  .advantages-list__item-title {
    margin-left: 15px;
    font-size: 1rem;
  }
  .pricing-list__item {
    max-width: 60%;
    min-width: 290px;
    margin-bottom: 20px;
    width: 100%;
  }
  .pricing-list__item:nth-last-child(2) {
    margin-bottom: 20px;
  }
  .works__item-wrapper {
    padding: 25px;
  }
  .works__item-geo {
    padding-bottom: 30px;
  }
  .works__item-geo span {
    font-size: .7rem;
  }
  .works__item-info {
    padding: 0 0 0 20px;
  }
  .works__item-info span {
    font-size: .8rem;
  }
  .calculating-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .calculating-left {
    padding-bottom: 0;
    margin-bottom: -130px;
    position: relative;
    z-index: 1;
    text-align: left;
  }
  .calculating-right {
    display: block;
    width: 100%;
    overflow: hidden;
    text-align: center;
    position: relative;
    z-index: 0;
  }
  .calculating-right img {
    -webkit-transform: translateY(165px);
            transform: translateY(165px);
  }
  .calculating-btn a.button {
    font-size: 1rem;
  }
  .materials {
    padding: 60px 15px;
  }
  .materials h2.another-title {
    text-align: left;
  }
  .materials-text {
    text-align: left;
  }
  .team-text {
    display: none;
  }
  .team-list {
    padding-bottom: 0;
  }
  .reviews-list__item {
    max-width: 290px;
    padding: 40px 15px 60px;
  }
  .documents-list__item {
    max-width: 290px;
    margin: 0 10px;
  }
  .how-illustration__item {
    width: 100%;
    margin-bottom: 35px !important;
  }
  .how-illustration__item:last-child {
    margin-bottom: 0 !important;
  }
  .how-illustration__item-photo::after {
    display: none !important;
  }
  .consultation {
    max-width: 100%;
    margin: 0;
    padding: 40px 15px 60px;
  }
  .consultation-block {
    padding-bottom: 0;
  }
  .consultation-title {
    font-size: 1.375rem;
  }
  .consultation-btn {
    width: 100%;
    margin-bottom: 35px;
  }
  .consultation-tel {
    margin: 0 auto 0 0;
  }
  .menu-nav__link {
    width: 50%;
  }
  .conditions-list__item {
    width: 100%;
  }
  .conditions-list__item-photo {
    text-align: center;
  }
  .conditions-list__item-descr {
    text-align: left;
  }
  .sale {
    padding-top: 300px;
    background-image: none;
    background-color: #f2f6ff;
    position: relative;
  }
  .sale::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 270px;
    background: url("../img/backgrounds/sale_photo-mob.png") no-repeat center;
    background-size: 100%;
  }
  .sale__title {
    max-width: 100%;
    padding-bottom: 30px;
    text-align: left;
  }
  .sale__title h2.title {
    text-align: left;
    font-size: 1.625rem;
  }
  .sale__oldprice {
    font-size: 1.875rem;
  }
  .sale__newprice {
    font-size: 3.25rem;
    padding-bottom: 30px;
  }
  .sale__text {
    max-width: 100%;
    font-size: 1rem;
    padding-bottom: 35px;
  }
  .doors-photos {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .doors-photos img {
    width: 100%;
  }
  .doors-photos img:nth-child(1) {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .doors-offer {
    max-width: 100%;
    margin: 0;
    background-image: none !important;
    background-color: #f2f6ff;
    padding: 300px 15px 40px;
    position: relative;
  }
  .doors-offer__text {
    max-width: 100%;
    padding-bottom: 35px;
  }
  .doors-offer__title {
    padding-bottom: 20px;
  }
  .doors-offer::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 270px;
    background: url("../img/backgrounds/mejkd_photo-mob.png") no-repeat center;
    background-size: 100%;
  }
  .windows-list__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 25px;
  }
  .windows-list__item-photo {
    max-width: 70px;
    min-width: 70px;
  }
  .windows-list__item-photo img {
    max-width: 100%;
  }
  .windows-list__item-title {
    margin-top: 0;
    margin-left: 10px;
  }
  .windows-prices-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .windows-prices-list__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 25px;
  }
  .windows-prices-list__item:last-child {
    margin-bottom: 0;
  }
  .windows-prices__more {
    margin-top: 25px;
    text-align: center;
  }
}

@media (max-width: 568px) {
  .more-block {
    padding: 20px;
  }
  .more-block::before {
    display: none;
  }
  .calc-form-back {
    left: 30px;
    top: 30px;
  }
  .design.single-page .design-list__item {
    max-width: 100%;
    margin-right: 0;
  }
  .design.single-page .design-list__item:nth-child(3n) {
    margin-right: 0%;
  }
  .design.single-page .design-list__item:nth-child(2n) {
    margin-right: 0;
  }
  .blocks-list .block {
    width: 100%;
  }
  .blocks-list .block img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 500px) {
  .home-form input, .home-form button, .inside-callback-form input, .inside-callback-form a.button {
    width: 100%;
    max-width: 100%;
  }
  .menu {
    padding: 40px 0;
  }
  .menu-nav {
    width: 100%;
  }
  .menu-nav__link {
    width: 100%;
    margin-bottom: 15px !important;
  }
  .menu-nav__link:last-child {
    margin-bottom: 0 !important;
  }
  .menu-socials {
    width: 100%;
    padding-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu-socials__link {
    margin-right: 15px;
  }
  .menu-socials__link:last-child {
    margin-right: 0;
  }
  .menu-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contacting-list {
    width: 100%;
    padding-right: 0;
  }
  .contacting-place {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contacting-place__photo {
    width: 100%;
  }
  .contacting-place__map {
    width: 100%;
  }
  .design.single-page .design-list__item {
    margin-bottom: 0;
    border-bottom: none;
  }
  .design.single-page .design-list__item:last-child {
    border-bottom: 2px solid #d4dfeb;
  }
}

@media (max-width: 400px) {
  .rooms-list label:nth-child(5) {
    margin-right: 0;
  }
  .rooms-list label:nth-child(11) {
    margin-right: 0;
  }
}

.contacts{
	position:relative;
	float:right;
	width:320px;
	max-width:100%;
	margin:65px 0;
	padding:30px 20px;
	background:#fff;
	box-shadow:0 1px 32px 0 rgba(0,0,31,.2);
}

.contacts p{
	margin:27px 0;
	font-size:16px;
	line-height:28px;
}

.contacts .title{
	font-size:30px;
}

.contacts .btn{
	display:block;
}

.contacts a.btn {
  background-color: #00c15f;
}

@media all and (max-width:960px){
	.contacts{
		margin:0;
	}
}

@media all and (max-width:600px){
	.contacts{
		float:none;
		position:initial;
		width:100%;
  }
  #screen10 .inner {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
.calc-docs {
  padding: 50px 20px 20px;
  background-color: #ffffff;
  border-top: 4px solid #5234fd;
  -webkit-transition: all .8s ease-in-out;
  transition: all .8s ease-in-out;
  position: relative;
  width: 970px;
  display: none;
  opacity: 0;
}

@media (max-width: 1200px) {
  .calc-docs {
    width: 100vw;
    max-width: 100%;
    overflow-x: hidden;
    height: 100vh;
    overflow-y: auto;
  }
}

.calc-docs-form-back {
  position: absolute;
  font-weight: 700;
  left: 70px;
  top: 50px;
}

@media (max-width: 1200px) {
  .calc-docs-form-back {
    top: 10px;
    left: 20px;
  }
}

.calc-docs-form {
  display: none;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  opacity: 0;
}

.calc-docs-download {
  padding: 0 50px 60px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

@media (max-width: 1200px) {
  .calc-docs-download {
    padding: 0;
  }
}

.docs-download-title {
  text-align: center;
  margin-bottom: 25px;
}

.docs-download-subtitle {
  font-weight: 600;
  max-width: 680px;
  text-align: center;
  margin: 0 auto 35px;
}

@media (max-width: 1200px) {
  .docs-download-subtitle {
    font-size: .875rem;
  }
}

.docs-download-area {
  background-color: #f2f6ff;
  padding: 30px;
  position: relative;
  text-align: center;
}

@media (max-width: 1200px) {
  .docs-download-area {
    padding: 10px;
  }
}

.docs-download-area::after {
  content: '';
  position: absolute;
  left: 30px;
  top: 30px;
  bottom: 30px;
  right: 30px;
  border: 1px dashed #7d7d7d;
  border-radius: 3px;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .docs-download-area::after {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

.docs-download-area-photo {
  margin: 40px 0 30px;
}

@media (max-width: 1200px) {
  .docs-download-area-photo {
    margin: 20px auto 15px;
    width: 50px;
  }
}

.docs-download-area-text1 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .docs-download-area-text1 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}

.docs-download-area-text2 {
  font-size: 1.125rem;
  font-weight: 600;
  /* margin-bottom: 45px; */
}

@media (max-width: 1200px) {
  .docs-download-area-text2 {
    font-size: 1rem;
    /* margin-bottom: 20px; */
  }
}

.docs-download-area-btn {
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .docs-download-area-btn {
    margin-bottom: 20px;
  }
}

.docs-download-area-btn input {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}

.docs-download-area-btn label {
  padding: 20px 35px;
  background-color: #00c15f;
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 600;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .docs-download-area-btn label {
    font-size: 1rem;
    padding: 10px 17.5px;
  }
}

.docs-download-area-btn label:hover {
  background-color: #00e571;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.docs-download-area-btn label:focus, .docs-download-area-btn label:active {
  background-color: #009d4d;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.docs-download-area-note {
  margin-bottom: 45px;
  font-size: .875rem;
}

@media (max-width: 1200px) {
  .docs-download-area-note {
    font-size: .7rem;
    margin: 0 10px 22px;
  }
}

.docs-downloaded-title {
  text-align: center;
  margin-bottom: 35px;
}

@media (max-width: 1200px) {
  .docs-downloaded-title {
    margin-bottom: 15px;
  }
}

.docs-downloaded-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 25px;
}

@media (max-width: 1200px) {
  .docs-downloaded-list {
    margin-bottom: 12px;
  }
}

.docs-downloaded-file {
  width: 370px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1200px) {
  .docs-downloaded-file {
    max-width: 370px;
    width: 100%;
    margin-bottom: 10px;
  }
}

.docs-downloaded-file:last-child {
  margin-bottom: 0;
}

.docs-downloaded-more {
  width: 370px;
  margin: 25px auto 50px;
}

@media (max-width: 1200px) {
  .docs-downloaded-more {
    width: 100%;
    max-width: 370px;
  }
}

.docs-downloaded-more input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.docs-downloaded-more label {
  padding: 13px 37px;
  border: 2px solid #5234fd;
  font-size: .875rem;
  color: #5234fd;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .docs-downloaded-more label {
    display: block;
    text-align: center;
    width: 100%;
  }
}

.docs-downloaded-more label:hover {
  color: #fff;
  background-color: #5234fd;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.docs-downloaded-more label:focus, .docs-downloaded-more label:active {
  background-color: #3411fd;
  color: #fff;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.file-status {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  background: url("../img/success-icon.png") no-repeat center;
  background-size: 100%;
}

.file-name {
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .file-name {
    white-space: normal;
    font-size: .875rem;
  }
}

.file-delete {
  width: 24px;
  height: 24px;
  margin-left: auto;
  border-radius: 50%;
  background: url("../img/delete_icon.png") no-repeat center;
  background-size: 100%;
  cursor: pointer;
}

.more-block__title {
  font-size: 1.15rem;
}
/** fixes **/
@media (max-width: 768px) {
  .landing {
    padding-top: 30px 0 0;
  }
  .landing-left__title h2.title {
    font-size: 33px;
    font-weight: 600;
    line-height: 40px;
  }
  .landing-ad {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .landing-ad__item {
    flex-direction: column;
    align-items: flex-start;
    width: calc(50% - 10px);
  }
  .landing-ad__item-photo {
    min-height: 79px;
    margin-bottom: 10px;
  }
  .landing-ad__item-title {
    font-size: 13px;
    font-weight: 500;
    color: #231f20;
  }
  .landing-ad__item-title span {
    font-weight: 600;
  }
  .landing-right__title h2.title {
    font-size: 29px;
    line-height: 36px;
    color: #fefefe;
    font-weight: 400;
  }
  .landing-right__text {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .landing-right__btn a.button {
    max-height: 60px;
  }
  .landing-right__text:nth-last-child(2) {
    margin-top: 30px;
  }
  .landing-right__anotherBtn a.another-button {
    max-height: 60px;
  }
  .pricing {
    padding: 60px 0 0;
  }
  .pricing-list {
    padding-bottom: 60px;
  }
  .header-right__tel a {
    padding-left: 20px;
  }
  .header-right__tel a::before {
    width: 14px;
    height: 14px;
    background-size: 70%;
  }
  .pricing-list .slick-track {
    display: flex;
  }
  .pricing-wrap {
    max-width: calc(100% - 15px);
    margin-right: 0;
  }
  .pricing-title {
    margin-right: 15px;
    padding-bottom: 25px;
  }
  .pricing-title h2.title {
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
    color: #231f20;
  }
  .pricing-list__item {
    min-width: 270px;
    max-width: 270px;
    height: inherit;
    margin-right: 20px;
    box-sizing: border-box;
    text-align: left;
    margin-bottom: 0 !important;
  }
  .pricing-list__item-descr {
    margin-bottom: 20px;
  }
  #screen7 .tabs {
    display: flex;
    flex-direction: column;
    max-height: 35px;
    overflow: hidden;
    position: relative;
  }
  #screen7 .tabs::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 6px;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: url('../img/down-arrow.svg') no-repeat center;
    background-size: 100% 100%;
  }
  #screen7 {
    background: #fff !important;
  }
  #screen7 .inner {
    padding: 28px 0 50px;
  }
  #screen7 .tabs.opened {
    overflow: visible;
    position: relative;
    z-index: 3;
  }
  .tabs li{
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 0;
    background-color: #f2f6ff;
    margin-left: 0;
  }
  .tabs li a {
    font-size: 12px;
    padding: 11px 16px 10px;
    color: #231f20;
    line-height: 1;
    border-radius: 0;
  }
  .tabs li.active {
    order: -1;
  }
  .tabs li a.active {
    background-color: #f2f6ff;
    order: -1;
    color: #231f20;
    border-radius: 17px;
    border-color: #231f20;
  }
  #screen7 .tabs.opened li a.active {
    border-radius: 17px 17px 0 0;
  }
  .bx-prev, .bx-next {
    display: none !important;
  }
  #work-desrc p {
    margin: 14px 0 20px;
  }
  #work-desrc p strong {
    font-size: 20px;
    font-weight: 400;
    font-family: "Montserrat";
  }
  #work-desrc p {
    font-size: 14px;
    line-height: 24px;
    font-family: "Montserrat";
  }
  .how-landing {
    padding: 60px 0 40px;
  }
  .how-title {
    margin-right: 15px;
  }
  .how-wrap {
    max-width: calc(100% - 15px);
    margin-right: 0;
  }
  .how-landing .how-illustration__item {
    max-width: 270px;
    margin-right: 10px;
  }
  .how-illustration.first .how-illustration__item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 28px;
  }
  .how-illustration.first .how-illustration__item-text {
    font-size: 14px;
    line-height: 26px;
  }
  .how-illustration.first .how-illustration__item-photo::after {
    display: block !important;
    right: 20px;
  }
  .how-illustration__item:last-child .how-illustration__item-photo::after {
    display: none !important;
  }
  .how.another .how-title h2.title {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 0;
  }
  .how.another {
    padding: 60px 0;
  }
  .how.another .how-wrap {
    margin-right: 15px;
  }
  .how.another .how-illustration__item-photo {
    margin-bottom: 20px;
  }
  .how.another .how-illustration__item-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 400;
  }
  .how.another .how-illustration__item-text {
    font-size: 14px;
    line-height: 24px;
  }
  .pricing-list__item.first {
    position: relative;
  }
  .pricing-list__item.second {
    border-width: 8px;
  }
  .pricing-list__item.first::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 160px;
    height: 160px;
    background: url("../img/landing/flat-label.png") no-repeat center;
  }
  .landing-list__title h2.title {
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
  }
  .landing-list__item img {
    width: 60px;
  }
  .landing-list__item span {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    color: #231f20;
  }
  .expert {
    margin: 60px auto;
  }
  .faq {
    padding: 60px 0 30px;
  }
  .faq-title h2.title {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
  }
  .faq-title {
    margin-bottom: 25px;
    padding-bottom: 0;
  }
  .director-wrap {
    flex-direction: column;
  }
  .director-about {
    display: block;
    margin-right: 0;
    width: 100%;
    text-align: left;
  }
  .director-about__photo {
    height: auto;
    padding-bottom: 0;
    text-align: left;
    margin-bottom: 12px;
  }
  .director-form__subtitle {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
  }
  .director-form-area input:nth-child(2) {
    margin-bottom: 20px;
  }
  .director-about__name {
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 600;
  }
  .director-about__spec {
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 500;
  }
  .director-about__photo img {
    max-width: 150px;
    max-height: 155px;
    position: relative;
  }
  .director-form__title h2.title {
    text-align: left;
  }
  .director-form__subtitle {
    text-align: left;
  }
  .documents {
    padding: 60px 0;
  }
  .documents-title {
    margin-bottom: 30px;
    padding-bottom: 0;
  }
  .documents-list__item {
    padding: 5px;
  }
  h2.title {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 0;
  }
  .reviews {
    padding: 0 0 60px;
  }
  .reviews-title {
    margin-bottom: 35px;
    padding-bottom: 0;
  }
  .reviews-more {
    display: none;
  }
  .slick-dots {
    padding-bottom: 0;
  }
  .reviews-list {
    padding-bottom: 0;
  }
  input[type="tel"], input[type="text"], input[type="name"] {
    padding: 20px 25px;
    font-size: 18px;
    color: #231f20;
    font-weight: 400;
  }
  input::placeholder {
    color: #868686;
  }
  .dreaming {
    padding: 215px 0 110px;
    position: relative;
  }
  .dreaming::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 215px;
    background: url('../img/dreaming-mobile.png') no-repeat center;
    background-size: 320px 100%;
    display: block;
  }
  .dreaming-title {
    margin-bottom: 25px;
  }
  .dreaming-subtitle {
    margin-bottom: 35px;
  }
  .dreaming-subtitle p {
    line-height: 30px;
    color: #231f20;
  }
  .download_form_desc {
    position: absolute;
    right: 15px;
    left: 15px;
    bottom: 50px;
    font-size: 10px;
    line-height: 20px;
    text-align: left;
  }
  .dreaming .download_form input[type="submit"] {
    margin: 0;
    width: 100%;
  }
  .dreaming .download_form input[type="tel"] {
    margin: 0 0 30px;
    width: 100%
  }
  .accordion {
    padding: 20px 50px 15px 30px;
  }
  .accordion-heading::after {
    height: 16px;
    left: -28px;
    transform: translateY(0);
    top: 5px;
  }
  .accordion-heading {
    margin-bottom: 0;
  }
  .accordion-content {
    margin-top: 20px;
  }
  .accordion-heading::before {
    width: 16px;
    top: 12px;
    transform: translateY(0)
  }
  .accordion.active .accordion-heading::after {
    display: none;
  }
}

@media (max-width: 500px) {
  .protecting-wrap {
    position: relative;
    padding-top: 200px;
  }
  .protecting-wrap::after {
    content: '';
    position: absolute;
    width: 100%;
    display: block;
    top: 0;
    right: 0;
    left: 0;
    height: 200px;
    background: url('../img/house-protect.png') no-repeat center;
    background-size: 100% 100%;
  }
    

}
