/*
  Theme Name: Cleaning
*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000D15;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

a:hover {
  text-decoration: underline;
}

li {
  list-style: none;
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

h1 {
  font-weight: 400;
  font-size: 48px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #000D15;
  margin-bottom: 50px;
}

h1 strong {
  color: #02426B;
  font-weight: 800;
}

h2 {
  font-weight: 400;
  font-size: 36px;
  line-height: 130%;
  color: #000D15;
  margin-bottom: 30px;
}

h2 strong {
  color: #02426B;
  font-weight: 700;
}

h3 {
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: #000D15;
}

h3 strong {
  color: #02426B;
  font-weight: 700;
}

p,
.text {
  font-size: 20px;
  line-height: 130%;
  color: #000D15;
}

p strong,
.text strong {
  color: #02426B;
  font-weight: 700;
}

p ul li,
.text ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
}

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

p ul li::before,
.text ul li::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #B2E0FF;
  margin-right: 15px;
}

.undertitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #B2E0FF;
  margin-bottom: 8px;
}

img {
  display: block;
  max-width: 100%;
}

.btn {
  display: table;
  position: relative;
}

.btn:hover svg stop:nth-child(1) {
  offset: 0.102083;
  stop-color: #02426B;
}

.btn:hover svg stop:nth-child(2) {
  offset: 0.602083;
  stop-color: #0092EE;
}

.btn:hover svg stop:nth-child(3) {
  offset: 1;
  stop-color: #A4DCFF;
}

.btn:active svg stop:nth-child(1) {
  stop-color: #0092EE;
}

.btn:active svg stop:nth-child(2) {
  offset: 0.628125;
  stop-color: #A4DCFF;
}

.btn:active svg stop:nth-child(3) {
  offset: 1;
  stop-color: #0092EE;
}

.btn input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  outline: none;
  border: 0;
  background: none;
  display: block;
  opacity: 0;
}

.btn label {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 110%;
  text-align: center;
  color: #fff;
  position: absolute;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.btn svg {
  pointer-events: none;
}

.btn svg stop {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.btn_unwork {
  position: absolute;
  bottom: -60px;
  right: -10px;
  width: 120px;
  height: 120px;
  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;
  background: #FFB173;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  border: 0;
}

.btn_unwork:hover span {
  opacity: 1;
}

.btn_unwork:hover svg,
.btn_unwork:hover img {
  opacity: 0;
}

.btn_unwork span {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.btn_unwork svg,
.btn_unwork img {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.swiper-pagination {
  display: none;
}

.nav_toggle {
  width: 30px;
  padding: 10px 0;
  z-index: 1;
  cursor: pointer;
  display: none;
}

.nav_toggle-item {
  display: block;
  width: 100%;
  height: 2px;
  position: relative;
  background-color: #02426B;
  -webkit-transition: background .2s linear;
  transition: background .2s linear;
  border-radius: 6px;
}

.nav_toggle-item::before, .nav_toggle-item::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  background-color: #02426B;
  z-index: 1;
  -webkit-transition: -webkit-transform .2s linear;
  transition: -webkit-transform .2s linear;
  transition: transform .2s linear;
  transition: transform .2s linear, -webkit-transform .2s linear;
  border-radius: 6px;
}

.nav_toggle-item::before {
  top: -8px;
}

.nav_toggle-item::after {
  bottom: -8px;
}

.nav_toggle.active .nav_toggle-item {
  background: none;
}

.nav_toggle.active .nav_toggle-item::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: rotate(45deg) translate3D(3px, -5px, 0);
          transform: rotate(45deg) translate3D(3px, -5px, 0);
}

.nav_toggle.active .nav_toggle-item::after {
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: rotate(-45deg) translate3D(2px, 6px, 0);
          transform: rotate(-45deg) translate3D(2px, 6px, 0);
}

.shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 66, 107, 0.5);
  z-index: 80;
  display: none;
}

.shadow.active {
  display: block;
}

/* header */
.header {
  padding: 10px 0;
  background: #B2E0FF;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

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

.social a {
  display: table;
  margin-right: 15px;
}

.tel {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #02426B;
  display: table;
}

.tel:hover {
  text-decoration: none;
}

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

.nav ul li {
  margin-right: 40px;
}

.nav ul li:last-child {
  margin-right: 0;
}

.nav ul li.current-menu-item a {
  color: #02426B;
  font-weight: 700;
}

.nav ul li a {
  display: table;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.nav ul li a:hover {
  color: #02426B;
  font-weight: 700;
  text-decoration: none;
}

.lang ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 20px 0 60px;
}

.lang ul li {
  margin-right: 8px;
}

.lang ul li:last-child {
  margin-right: 0;
}

.lang ul li.current-lang a {
  color: #fff;
  background: #02426B;
  pointer-events: none;
}

.lang ul li:not(.current-lang) a:hover {
  text-decoration: underline;
}

.lang ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #02426B;
  padding: 5px 8px;
  border-radius: 5px;
}

.lang ul li a:hover {
  text-decoration: none;
}

/* clean */
.clean {
  padding-bottom: 120px;
}

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

.clean_inner h3 {
  width: 30%;
  text-align: center;
}

.clean_img {
  position: relative;
}

.clean_img img {
  width: 100%;
  border-radius: 20px;
}

.clean_img .btn {
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* how */
.how {
  padding-top: 20px;
  padding-bottom: 120px;
  overflow: hidden;
}

.how_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.how_list {
  margin-right: 8%;
  padding-left: 35px;
  border-left: 2px solid #B2E0FF;
}

.how_list li {
  margin-bottom: 30px;
  position: relative;
  cursor: pointer;
  list-style: decimal;
}

.how_list li:last-child {
  margin-bottom: 0;
}

.how_list li::before {
  position: absolute;
  content: "";
  top: -3px;
  left: -43px;
  width: 15px;
  height: 20px;
  background: center center/contain url("http://www.stirkakovrov.com.ua/wp-content/uploads/2022/09/how_icon.svg") no-repeat;
}

.how_list li.active {
  font-weight: 600;
  color: #02426B;
  margin-left: 15px;
}

.how_list li.active::before {
  left: -79px;
  top: -20px;
  width: 50px;
  height: 50px;
  background-image: url("http://www.stirkakovrov.com.ua/wp-content/uploads/2022/09/how_active.svg");
}

.how_info {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  background: #fff;
  border-radius: 50%;
  width: 100%;
  padding: 100px;
  aspect-ratio: 1 / 1;
}

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

.how_block {
  width: 50%;
  position: relative;
}

.how_block .how_line {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* what */
.what {
  padding-bottom: 120px;
}

.what_inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr (1fr)[2] 1.5fr;
      grid-template-columns: 1.5fr repeat(2, 1fr) 1.5fr;
  -ms-grid-rows: (1fr)[2];
      grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-bottom: 50px;
}

.what_img:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 2 / 2;
}

.what_img:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: 1 / 2 / 2 / 4;
}

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

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

.what_img:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-area: 1 / 4 / 3 / 5;
}

.what_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.what_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.what_info .what_text,
.what_info .text {
  width: 48%;
}

/* footer */
.footer {
  padding: 50px 0;
  background: #02426B;
}

.footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 55px;
}

.footer_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 40px;
  margin-right: 25px;
  max-width: 410px;
}

.footer_item {
  width: 48%;
  margin-bottom: 25px;
}

.footer_item .text,
.footer_item .tel {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

.footer_item .text p,
.footer_item .tel p {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

.footer_item ul li {
  margin-bottom: 10px;
}

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

.footer_item ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #B2E0FF;
}

.footer_item .social a path {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.footer_item .social a:hover path {
  fill: #B2E0FF;
}

.map {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.map iframe {
  width: 100%;
  height: 100%;
}

.footer_policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 410px;
  margin-left: 92px;
}

.footer_policy p,
.footer_policy a {
  display: table;
  width: 48%;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #B2E0FF;
}

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

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

.about_inner.even .about_title {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.about_inner .about_title {
  max-width: 370px;
}

.about_inner .text {
  width: 60%;
}

.about_inner img {
  width: 100%;
}

.about_img {
  margin-bottom: 20px;
}

/* blog */
.blog {
  padding-bottom: 120px;
}

.blog_inner {
  display: -ms-grid;
  display: grid;
  grid-column-gap: 50px;
  grid-row-gap: 25px;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(100px, auto);
      grid-template-areas: "leftItem leftItem rightItem1" "leftItem leftItem rightItem1" "leftItem leftItem rightItem2" "leftItem leftItem rightItem2";
}

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

.blog_item:nth-child(3n + 1) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: leftItem;
}

.blog_item:nth-child(3n + 2) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 3;
  grid-area: rightItem1;
}

.blog_item:nth-child(3n + 3) {
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  -ms-grid-column: 3;
  grid-area: rightItem2;
}

.blog_item h3 {
  margin-bottom: 20px;
}

.blog_block {
  width: 40%;
}

.blog_block .blog_item {
  width: 100%;
  margin-bottom: 50px;
}

.blog_block .blog_item:last-child {
  margin-bottom: 0;
}

.blog_img {
  position: relative;
  margin-bottom: 30px;
}

.blog_img img {
  border-radius: 20px;
  width: 100%;
}

.sale {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 55px 5px 20px;
  background: center center/contain url("http://www.stirkakovrov.com.ua/wp-content/uploads/2022/09/btn.svg") no-repeat;
}

.sale h3 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 0;
}

/* carpets */
.carpets_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 120px;
}

.carpets_img {
  width: 40%;
}

.carpets_top_info {
  width: 55%;
}

.carpets_inner {
  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;
  margin: 30px 0;
}

.carpets_item {
  width: 32%;
  margin-bottom: 24px;
}

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

.carpets_bottom .text {
  width: 48%;
}

.slider {
  padding: 0 45px;
  margin: 20px -45px 120px;
  position: relative;
}

.slider img {
  border-radius: 20px;
}

/* faq */
.faq {
  padding-bottom: 120px;
}

.faq_item {
  margin-bottom: 20px;
}

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

.faq_item .text {
  padding: 20px;
  display: none;
}

.faq_title {
  padding: 35px 65px 35px 35px;
  background: #B2E0FF;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
}

.faq_title::before {
  position: absolute;
  content: "";
  top: 20%;
  right: 25px;
  width: 35px;
  height: 35px;
  border: 3px solid #02426B;
  border-top: 0;
  border-left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.faq_title.active {
  background: #02426B;
}

.faq_title.active h3 {
  color: #fff;
}

.faq_title.active::before {
  top: 40%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  border-color: #fff;
}

/* furniture */
.furniture_top {
  margin-bottom: 120px;
}

.furniture_top .text p {
  margin-bottom: 20px;
}

.furniture_top .text .alignnone {
  float: right;
  margin-left: 20px;
}

/* contacts */
.contacts {
  padding-bottom: 120px;
}

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

.contacts_item {
  width: 48%;
}

.contacts_item .social a {
  margin-right: 40px;
}

.contacts_item .social a:last-child {
  margin-right: 0;
}

.contacts_item .tel {
  font-weight: 700;
  color: #000D15;
  font-size: 20px;
  margin-bottom: 10px;
}

.contacts_item .text h3 {
  margin-bottom: 30px;
}

.contacts_item .text p {
  margin-bottom: 20px;
}

.contacts_item.sec {
  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;
}

.contacts_item.sec .contacts_item_block {
  width: 48%;
}

.contacts_item.sec .contacts_item_block p {
  margin-bottom: 15px;
}

.contact_item_img {
  margin-top: 20px;
  width: 100%;
}

.contact_item_img img {
  width: 100%;
}

/* price */
.price {
  padding-bottom: 120px;
}

.price_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}

.price_links a {
  display: table;
  max-width: 330px;
  width: 100%;
  font-weight: 400;
  font-size: 28px;
  line-height: 130%;
  color: #000D15;
  padding: 10px;
  border-radius: 5px;
  margin-right: 15px;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.price_links a:not(.active):hover {
  text-decoration: underline;
}

.price_links a:last-child {
  margin-right: 0;
}

.price_links a.active {
  pointer-events: none;
  color: #fff;
  background: #02426B;
}

.price_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 120px;
}

.price_info ul {
  width: 32%;
  margin-right: 1%;
  margin-bottom: 20px;
}

.price_info ul h3 {
  text-align: center;
  margin-bottom: 30px;
}

.price_info ul:last-child {
  margin-right: 0;
}

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

.price_info ul li:not(:first-child)::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  background: center center/contain url("http://www.stirkakovrov.com.ua/wp-content/uploads/2022/09/list.svg") no-repeat;
}

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

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

.price_item {
  width: 45%;
}

.price_item p {
  margin-bottom: 20px;
}

.price_item h3 {
  color: #02426B;
  font-weight: 700;
  margin-bottom: 10px;
}

.price_img img {
  width: 100%;
  border-radius: 20px;
}

/* modal */
.recall,
.unwork {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
  background: rgba(2, 66, 107, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 90px 36px 40px 15px;
  overflow-x: hidden;
  overflow-y: auto;
}

.recall.active,
.unwork.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.recall .form,
.unwork .form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin: auto;
  background: #B2E0FF;
  max-width: 1010px;
  width: 100%;
  min-height: 540px;
  padding: 50px 100px;
  border: 3px solid #02426B;
  border-radius: 20px;
}

.recall .form h3,
.unwork .form h3 {
  margin-bottom: 40px;
  text-align: center;
}

.recall .form label,
.unwork .form label {
  display: block;
  margin-bottom: 10px;
  color: #02426B;
}

.recall .form input,
.recall .form textarea,
.unwork .form input,
.unwork .form textarea {
  border: 1px solid #fff;
  display: block;
  width: 100%;
  outline: none;
  background: #fff;
  padding: 15px 20px;
  color: #02426B;
}

.recall .form input::-webkit-input-placeholder,
.recall .form textarea::-webkit-input-placeholder,
.unwork .form input::-webkit-input-placeholder,
.unwork .form textarea::-webkit-input-placeholder {
  color: #B2E0FF;
}

.recall .form input:-ms-input-placeholder,
.recall .form textarea:-ms-input-placeholder,
.unwork .form input:-ms-input-placeholder,
.unwork .form textarea:-ms-input-placeholder {
  color: #B2E0FF;
}

.recall .form input::-ms-input-placeholder,
.recall .form textarea::-ms-input-placeholder,
.unwork .form input::-ms-input-placeholder,
.unwork .form textarea::-ms-input-placeholder {
  color: #B2E0FF;
}

.recall .form input::placeholder,
.recall .form textarea::placeholder,
.unwork .form input::placeholder,
.unwork .form textarea::placeholder {
  color: #B2E0FF;
}

.recall .form input:focus,
.recall .form textarea:focus,
.unwork .form input:focus,
.unwork .form textarea:focus {
  border-color: #02426B;
}

.recall .form textarea,
.unwork .form textarea {
  resize: none;
  height: calc(100% - 31px);
  margin-bottom: 0;
}

.recall .form .wpcf7-form-control-wrap,
.unwork .form .wpcf7-form-control-wrap {
  margin-bottom: 25px;
  display: table;
}

.recall .form .wpcf7-response-output,
.unwork .form .wpcf7-response-output {
  display: none;
}

.recall .form .wpcf7-spinner,
.unwork .form .wpcf7-spinner {
  display: block;
}

.recall .form .btn label,
.unwork .form .btn label {
  background: none;
  color: #fff;
  margin-bottom: 0;
}

.recall .form form,
.unwork .form form {
  position: relative;
}

.recall .form .recall_sucess,
.unwork .form .recall_sucess {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: 2;
  background: #B2E0FF;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.recall .form .recall_sucess h3,
.unwork .form .recall_sucess h3 {
  margin-bottom: 0;
}

.close {
  cursor: pointer;
  position: absolute;
  border: 0;
  outline: none;
  background: none;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 32px;
}

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

.recall_item {
  width: 49%;
}

.recall_item:last-child .wpcf7-form-control-wrap {
  height: 100%;
}

.unwork form .undertitle {
  color: #000D15;
}

.unwork form h3 {
  text-align: left !important;
}

.unwork form input[type="number"] {
  padding: 10px;
  width: auto;
  background: #FFB173;
  font-weight: 700;
  font-size: 36px;
  line-height: 130%;
  color: #fff;
  margin-bottom: 0;
  width: 100%;
}

.unwork form .wpcf7-not-valid-tip {
  position: absolute;
}

.unwork form select {
  outline: none;
  background: none;
  border: 0;
}

.unwork .unwork_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.unwork .unwork_nums {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.unwork .unwork_nums .wpcf7-form-control-wrap {
  width: 85px;
  margin-right: 20px;
}

.unwork .unwork_nums .wpcf7-form-control-wrap::before, .unwork .unwork_nums .wpcf7-form-control-wrap::after {
  position: absolute;
  content: "^";
  color: #fff;
  top: 2px;
  right: 2px;
  height: 50%;
  width: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  pointer-events: none;
  z-index: 2;
  background: #FFB173;
}

.unwork .unwork_nums .wpcf7-form-control-wrap::after {
  top: initial;
  bottom: 2px;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}

.unwork .unwork_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 600px;
}

.unwork .unwork_item input {
  width: 49%;
  background: transparent;
  margin-bottom: 10px;
  border: 3px solid #02426B;
}

.unwork .unwork_item input::-webkit-input-placeholder {
  color: #02426B;
}

.unwork .unwork_item input:-ms-input-placeholder {
  color: #02426B;
}

.unwork .unwork_item input::-ms-input-placeholder {
  color: #02426B;
}

.unwork .unwork_item input::placeholder {
  color: #02426B;
}

.unwork .unwork_item input.button {
  background: #FFB173;
  color: #fff;
  text-align: center;
  border: 0;
  cursor: pointer;
  min-height: 54px;
}

.unwork .unwork_item .wpcf7-form-control-wrap {
  width: 49%;
  margin-bottom: 0;
}

.unwork .unwork_item .wpcf7-form-control-wrap input {
  width: 100%;
}

.unwork .unwork_item .undertitle {
  width: 100%;
}

/* media */
@media (max-width: 1300px) {
  .nav ul li {
    margin-right: 30px;
  }
  .nav ul li a {
    font-size: 15px;
  }
  .header .social {
    display: none;
  }
  .how_list {
    margin-left: 25px;
  }
  .how_info {
    padding: 50px;
  }
  .how_block {
    width: 45%;
  }
  .footer .container {
    padding-right: 0;
  }
  .footer_info,
  .footer_policy {
    max-width: 500px;
  }
  .clean .container {
    padding: 0;
  }
  .btn_unwork {
    right: 10px;
  }
  .about_inner .text {
    width: 50%;
  }
  .about_inner .about_title {
    width: 100%;
    max-width: 370px;
  }
  .slider {
    margin: 20px 0 120px 0;
  }
  .faq_title::before {
    width: 25px;
    height: 25px;
  }
  .recall .form,
  .unwork .form {
    padding: 40px 60px;
  }
}

@media (max-width: 1200px) {
  .blog_inner {
    display: block;
  }
  .blog_item {
    width: 100%;
    margin-bottom: 40px;
  }
}

@media (max-width: 900px) {
  .header .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav_toggle {
    display: block;
  }
  .nav {
    overflow: auto;
    padding: 40px 0;
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background-color: #fff;
    display: none;
    border-radius: 0px 0px 20px 20px;
  }
  .nav ul {
    display: block;
  }
  .nav ul li {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .nav ul li:last-child {
    margin-bottom: 0;
  }
  .nav ul li.current-menu-item a {
    background: #02426B;
    color: #fff;
  }
  .nav ul li a {
    display: block;
    text-align: right;
    font-size: 14px;
    padding: 10px 20px;
  }
  .nav ul li a:hover {
    background: #02426B;
    color: #fff;
  }
  .map {
    width: 100%;
    max-width: 360px;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .footer {
    position: relative;
  }
  .footer .container {
    padding-right: 15px;
  }
  .footer_logo {
    position: absolute;
    bottom: 50px;
    right: 15px;
  }
  .footer_info {
    margin-left: 0;
    margin-right: 0;
  }
  .footer_policy {
    margin-left: 0;
    width: calc(100% - 360px);
  }
  .how_inner {
    display: block;
  }
  .how_list {
    max-width: 360px;
    margin: 0 auto 45px;
  }
  .how_block {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }
  .clean_img .btn {
    top: initial;
    left: 35px;
    bottom: -95px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .footer_inner {
    margin-bottom: 75px;
  }
  .carpets_img {
    max-width: 350px;
    width: 100%;
  }
  .carpets_img img {
    height: 390px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
  }
  .carpets_top_info {
    width: 100%;
    margin-left: 20px;
  }
  .carpets_item {
    width: 48%;
  }
  .carpets_title {
    width: 48%;
  }
  .slider {
    padding: 0;
  }
  .swiper-pagination {
    display: block;
    bottom: -30px !important;
  }
  .swiper-pagination-bullet {
    background: #D2EDFF;
  }
  .swiper-pagination-bullet-active {
    background: #02426B;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
  .furniture_top .text img {
    max-width: 320px;
  }
  .price_info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .price_info ul {
    width: 48%;
  }
  .price_item {
    width: 49%;
  }
  .blog_block {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .blog_block .blog_item {
    width: 49%;
  }
  .contacts_item .tel {
    font-size: 16px;
    margin-bottom: 5px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 20px;
  }
  p,
  .text {
    font-size: 16px;
  }
}

@media (max-width: 810px) {
  .footer_policy {
    width: 55%;
  }
  .about_inner .text {
    width: 45%;
  }
}

@media (max-width: 767px) {
  .header .social {
    display: none;
  }
  .clean_inner {
    display: block;
  }
  .clean_inner h3 {
    width: 100%;
    margin-bottom: 20px;
  }
  .clean_img img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .clean_img .btn {
    bottom: -75px;
    left: 15px;
  }
  .btn label {
    font-size: 13px;
    bottom: 40px;
  }
  .btn svg {
    width: 110px;
    height: 150px;
  }
  .btn_unwork {
    width: 80px;
    height: 80px;
  }
  .btn_unwork span {
    font-size: 12px;
  }
  .btn_unwork svg {
    width: 30px;
    height: 30px;
  }
  .how_list {
    margin: 0 0 25px 0;
  }
  .how_block {
    max-width: 100%;
  }
  .how_info {
    padding: 0;
    aspect-ratio: auto;
  }
  .how_line {
    display: none;
  }
  .how,
  .what,
  .about,
  .faq,
  .price {
    padding-bottom: 80px;
  }
  .what_info {
    display: block;
  }
  .what_info .what_text,
  .what_info .text {
    width: 100%;
  }
  .what_info .what_text {
    margin-top: 20px;
  }
  .footer_inner {
    display: block;
    margin-bottom: 55px;
  }
  .footer_info {
    max-width: 100%;
    margin-bottom: 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer .container {
    padding: 0 5px;
  }
  .map {
    max-width: 100%;
    height: 275px;
  }
  .footer_logo {
    right: initial;
    left: 15px;
  }
  .footer_item .tel,
  .footer_item .text {
    font-size: 14px;
  }
  .footer_item .tel p,
  .footer_item .text p {
    font-size: 14px;
  }
  .footer_policy {
    display: block;
    width: 48%;
    max-width: 100%;
    margin-left: auto;
  }
  .footer_policy p,
  .footer_policy a {
    width: 100%;
  }
  .footer_policy p {
    margin-bottom: 10px;
  }
  .undertitle {
    font-size: 14px;
  }
  .what_inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (1fr)[4];
        grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
  .what_img:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1 / 1 / 2 / 3;
  }
  .what_img:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2 / 1 / 3 / 2;
  }
  .what_img:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2 / 2 / 3 / 3;
  }
  .what_img:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 3 / 1 / 4 / 3;
  }
  .what_img:nth-child(5) {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 4 / 1 / 5 / 3;
  }
  .what_img img {
    height: 280px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about_inner {
    display: block;
  }
  .about_inner .text {
    width: 100%;
  }
  .about_inner .about_title {
    max-width: 100%;
  }
  .carpets_title {
    width: 100%;
  }
  .carpets_top,
  .slider,
  .furniture_top,
  .price_info {
    margin-bottom: 80px;
  }
  .carpets_item {
    width: 100%;
  }
  .carpets_bottom {
    display: block;
  }
  .carpets_bottom .text {
    margin-bottom: 20px;
    width: 100%;
  }
  .carpets_top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .carpets_top_info {
    margin-left: 0;
    margin-bottom: 20px;
  }
  .carpets_img {
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .carpets_img img {
    width: 100%;
    height: auto;
  }
  .faq_title {
    padding: 25px 50px 25px 25px;
  }
  .faq_title::before {
    width: 15px;
    height: 15px;
    top: 30%;
  }
  .furniture_top .text img {
    float: initial;
    max-width: 370px;
    width: 100%;
    margin: 0 auto 20px;
  }
  .carpets_slider .swiper-slide img {
    width: 100%;
  }
  .price_links {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .price_links a {
    max-width: 49%;
    margin-right: 0;
  }
  .price_info ul {
    width: 100%;
  }
  .price_inner {
    display: block;
  }
  .price_item {
    width: 100%;
    margin-bottom: 30px;
  }
  .price_item:last-child {
    margin-bottom: 0;
  }
  .blog_img {
    margin-bottom: 20px;
  }
  .blog_img img {
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .blog_block {
    display: block;
  }
  .blog_block .blog_item {
    width: 100%;
    margin-bottom: 30px;
  }
  .blog_item {
    margin-bottom: 30px;
  }
  .sale {
    display: none;
  }
  .contacts_inner {
    display: block;
  }
  .contacts_item {
    width: 100%;
  }
  .contacts_item .tel {
    font-size: 14px;
  }
  .contacts_item.sec {
    margin-top: 20px;
  }
  .contact_item_img {
    display: none;
  }
  .recall .form {
    position: relative;
    padding: 40px 30px 200px;
  }
  .recall .form textarea {
    height: 200px;
  }
  .recall .form .wpcf7-form-control-wrap {
    display: block;
  }
  .recall .form .btn {
    position: absolute;
    bottom: -180px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .unwork .form {
    padding: 40px 30px;
  }
  .unwork .form h3,
  .unwork .form p {
    text-align: center !important;
  }
  .unwork .form .wpcf7-form-control-wrap {
    display: block;
  }
  .unwork .unwork_item {
    max-width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .unwork .unwork_item input {
    width: 100%;
  }
  .unwork .unwork_item input[type="submit"] {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .unwork .unwork_item .wpcf7-form-control-wrap {
    width: 100%;
  }
  .unwork .unwork_item p {
    text-align: left !important;
  }
  .unwork_inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .recall,
  .unwork {
    padding: 150px 10px 40px 10px;
  }
  .recall .form,
  .unwork .form {
    min-height: 310px;
  }
  .close {
    top: 10px;
    right: 10px;
  }
  .recall_inner {
    display: block;
  }
  .recall_item {
    width: 100%;
  }
  h1 {
    margin-bottom: 40px;
    font-size: 32px;
  }
  h2 {
    margin-bottom: 20px;
    text-align: center;
  }
  p ul li,
  .text ul li {
    margin-bottom: 20px;
  }
}

@media (max-width: 320px) {
  .logo {
    width: 30px;
  }
  .btn_unwork {
    display: none;
  }
  .btn label {
    font-size: 15px;
  }
  .btn svg {
    width: 90px;
    height: 130px;
  }
  .clean_img .btn {
    bottom: 15px;
    left: 15px;
  }
  .clean_img img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .how,
  .what,
  .about,
  .faq,
  .price {
    padding-bottom: 60px;
  }
  .carpets_top,
  .slider,
  .furniture_top,
  .price_info {
    margin-bottom: 60px;
  }
  .footer_logo {
    display: none;
  }
  .footer_policy {
    width: 100%;
    text-align: center;
  }
  .footer_inner {
    margin-bottom: 20px;
  }
  .what_inner {
    display: none;
  }
  .contacts_item {
    text-align: center;
  }
  .contacts_item .social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contacts_item .tel {
    margin: 0 auto 5px;
  }
  .contacts_item.sec {
    display: block;
  }
  .contacts_item.sec .contacts_item_block {
    width: 100%;
  }
  .recall .form .wpcf7-form-control-wrap,
  .unwork .form .wpcf7-form-control-wrap {
    margin-bottom: 20px;
  }
  .recall .unwork_inner,
  .unwork .unwork_inner {
    display: block;
  }
  .recall .unwork_nums,
  .unwork .unwork_nums {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .recall .unwork_nums .wpcf7-form-control-wrap:last-child,
  .unwork .unwork_nums .wpcf7-form-control-wrap:last-child {
    margin-right: 0;
  }
  .recall .unwork_nums + .wpcf7-form-control-wrap,
  .unwork .unwork_nums + .wpcf7-form-control-wrap {
    display: table;
    margin: 0 auto 30px;
  }
  h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 17px;
  }
  p,
  .text {
    font-size: 15px;
  }
  p ul li,
  .text ul li {
    margin-bottom: 10px;
  }
}
/*# sourceMappingURL=style.css.map */