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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 .white-text {
   color: #ffffff;
 }

 .primary-text {
   color: #B7875E;
   white-space: nowrap;
 }

 @media (max-width: 765px) {
   .primary-text {
     white-space: initial;
   }
 }

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

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

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

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

 li {
   list-style: none;
 }

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

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

 a:hover {
   color: #B7875E;
 }

 section {
   padding-top: 100px;
 }

 @media (max-width: 480px) {
   section {
     padding-top: 40px;
   }
 }

 .btn {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   border: none;
   color: #2F2920;
   font-family: 'Lato', sans-serif;
   font-weight: 600;
   font-size: 16px;
   line-height: 120%;
   text-transform: uppercase;
   width: 100%;
   padding: 15px 30px 15px 30px;
   max-width: -webkit-fit-content;
   max-width: -moz-fit-content;
   max-width: fit-content;
   cursor: pointer;
   -webkit-transition: all .4s;
   transition: all .4s;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   background: radial-gradient(107.69% 107.69% at 50.22% -7.69%, #FFD278 0%, #D99E29 100%);
   border-radius: 5px;
 }

 .btn:hover,
 .btn:active {
   color: #2F2920;
   background: radial-gradient(107.69% 107.69% at 50.22% -7.69%, #dba73e 0%, #D99E29 100%);
   -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
   filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
 }

 .input {
   width: 100%;
   background: #FFFFFF;
   border: 1px solid rgba(0, 0, 0, 0.1);
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
   font-weight: 300;
   font-size: 16px;
   line-height: 120%;
   padding: 20px;
   outline: none;
   font-family: 'Lato', sans-serif;
   -webkit-transition: all .3s;
   transition: all .3s;
 }

 .input:hover {
   -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
   box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
 }

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

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

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

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

 @media only screen and (max-width: 480px) {
   .section-title {
     font-size: 22px;
   }
 }

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

 @media only screen and (max-width: 480px) {
   .section-subtitle {
     font-size: 18px;
     line-height: 28px;
   }
 }

 .subtitle {
   font-weight: 500;
   font-size: 50px;
   line-height: 110%;
   text-transform: uppercase;
   font-family: 'Lato', sans-serif;
   margin: 0;
 }

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

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

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

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

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

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

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

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

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

 .toTopBtn:hover {
   opacity: 1;
 }

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

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

 .hidden {
   display: none;
 }

 .gradient {
   /* FF3.6-15 */
   /* Chrome10-25,Safari5.1-6 */
   background: -webkit-gradient(linear, left top, left bottom, from(rgba(248, 248, 248, 0)), color-stop(1%, rgba(248, 248, 248, 0)), to(rgba(248, 248, 248, 0.9)));
   background: linear-gradient(to bottom, rgba(248, 248, 248, 0) 0%, rgba(248, 248, 248, 0) 1%, rgba(248, 248, 248, 0.9) 100%);
   /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00f8f8f8', endColorstr='#e6f8f8f8', GradientType=0);
 }

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

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

 .header__top {
   border-bottom: 1px solid #C7C8CB;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   min-height: 41px;
 }

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

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

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

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

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

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

 .header__main {
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   height: 59px;
   border-bottom: 1px solid #C7C8CB;
 }

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

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

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

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

 .header__contacts {
   margin: 0 0 0 auto;
 }

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

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

 .header__burger {
   display: none;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   color: #2E2E2E;
   font-family: 'Lato', sans-serif;
   font-size: 22px;
   line-height: 110%;
   text-transform: uppercase;
 }

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

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

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

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

   visibility: hidden;
   transition: all .4s;
   transform: translateX(100%);
   opacity: 0;

   display: none;
 }

 @media (max-width: 850px) {
   .header__popup {
     display: block;
   }
 }

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

 .header__popup-top {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   border-top: 1px solid #C7C8CB;
   border-bottom: 1px solid #C7C8CB;
 }

 .header__popup-top p {
   font-size: 32px;
   line-height: 110%;
   color: #2E2E2E;
   font-family: 'Lato', sans-serif;
   text-transform: uppercase;
   margin: 10px 0;
 }

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

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

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

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

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

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

 .logo__text {
   font-weight: 300;
   font-size: 14px;
   line-height: 130%;
   opacity: 0.8;
   margin: 0 0 0 11px;
   max-width: 180px;
   padding: 0 0 0 8px;
   /* border-left: 1px solid #C4C4C4; */
 }

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

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

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

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

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

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

 .first-screen__container {
   min-height: 830px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   position: relative;
   z-index: 1;
 }

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

 @media (max-width: 700px) {
   .first-screen__container:before {
     content: ' ';
     display: block;
     right: calc(50% - 640px);
     top: 30px;
     width: 890px;
     height: 870px;
     background: url(../img/first-screen-bg.png) right/contain no-repeat;
     position: absolute;
     z-index: 0;
   }
 }

 @media (max-width: 700px) and (max-width: 700px) {
   .first-screen__container:before {
     width: 350px;
     height: 400px;
     top: initial;
     bottom: 0;
     right: -90px;
   }
 }

 @media (max-width: 700px) and (max-width: 480px) {
   .first-screen__container:before {
     right: -120px;
   }
 }

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

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

 .first-screen__content .section-title {
   font-size: 112px;
   line-height: 110%;
   margin-bottom: 15px;
 }

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

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

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

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

 .first-screen__content .section-subtitle {
   font-weight: 300;
   font-size: 41px;
   line-height: 49px;
   margin-bottom: 40px;
 }

 .first-screen__slider-wrap {
   width: 50vw;
   overflow: hidden;
   position: absolute;
   left: 50%;
   top: 0;
   height: 100%;
   padding: 110px 0;
 }

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

 .first-screen__slider-wrap:before {
   content: ' ';
   display: block;
   right: calc(50% - 640px);
   top: 30px;
   width: 890px;
   height: 870px;
   background: url(../img/first-screen-bg.png) right/contain no-repeat;
   position: absolute;
   z-index: 0;
 }

 @media (max-width: 1200px) {
   .first-screen__slider-wrap:before {
     width: 700px;
     height: 700px;
   }
 }

 @media (max-width: 780px) {
   .first-screen__slider-wrap:before {
     min-height: initial;
     height: 690px;
     top: 45px;
     width: 600px;
   }
 }

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

 .first-screen__slider {
   height: 100%;
 }

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

 .first-screen .swiper-slide img {
   display: block;
   -o-object-fit: contain;
   object-fit: contain;
   height: 100%;
   width: auto;
   margin: 0 0 auto;
 }

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

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

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

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

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

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

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

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

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

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

 /*first-screen end*/
 /*block1 start*/
 @media (max-width: 480px) {
   .block1 .section-subtitle {
     font-weight: 300;
     font-size: 18px;
     line-height: 22px;
     max-width: 220px;
     margin: auto;
   }
 }

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

 .block1__img {
   height: 490px;
   position: relative;
   max-width: 33.333%;
 }

 @media (max-width: 1100px) {
   .block1__img {
     height: initial;
     margin: 50px 0 20px;
   }
 }

 .block1__img picture {
   position: absolute;
   right: 50px;
   width: 900px;
   height: 540px;
 }

 @media (max-width: 1100px) {
   .block1__img picture {
     position: initial;
     right: initial;
     height: initial;
   }
 }

 .block1__img,
 .block1__list {
   width: 100%;
   -webkit-box-flex: 0;
   -ms-flex: none;
   flex: none;
 }

 .block1__list {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   margin-top: 140px;
   max-width: 66.666%;
   padding: 0 44px;
 }

 @media (max-width: 1100px) {
   .block1__list {
     max-width: 630px;
     padding: 0 10px;
     margin-top: 30px;
     text-align: left;
   }
 }

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

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

 @media (max-width: 480px) {
   .block1__img {
     margin-top: 10px;
     margin-bottom: 40px;
   }
 }

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

 .block1__item {
   width: 50%;
   margin-bottom: 50px;
   color: #000000;
   font-weight: 500;
   font-size: 18px;
   line-height: 22px;
   text-transform: uppercase;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
 }

 .block1__item p {
   margin: 0;
 }

 .block1__item::before {
   content: ' ';
   display: block;
   width: 60px;
   height: 60px;
   margin-right: 30px;
   background: url(../img/block1/block-1.png) center/contain no-repeat;
 }

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

   .block1__item::before {
     margin-right: 0;
     margin-bottom: 15px;
   }
 }

 @media (max-width: 680px) {
   .block1__item {
     width: 50%;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     text-align: center;
     font-size: 14px;
   }
 }

 @media (max-width: 480px) {
   /* .block1__item {
    width: 100%;
  }
  .block1__item:last-child {
    margin-bottom: 0;
  } */
 }

 .block1__item img {
   margin-bottom: 16px;
   display: block;
 }

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

 .round {
   width: 116px;
   height: 116px;
   border-radius: 50%;
   background: #F3DCB3;
   position: absolute;
 }

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

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

 @media (max-width: 1100px) {
   .block1__round {
     width: 84px;
     height: 84px;
     background-size: 32px;
     right: initial;
     left: 170px;
     top: 50%;
   }
 }

 @media (max-width: 480px) {
   .block1__round {
     width: 110px;
     height: 110px;
     background-size: 36px;
     left: 126px;
     top: initial;
     bottom: -5px;
   }
 }

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

 @media (max-width: 1100px) {
   .block1__round span {
     width: 74px;
     height: 74px;
     left: 5px;
     top: 5px;
   }
 }

 @media (max-width: 480px) {
   .block1__round span {
     width: 94px;
     height: 94px;
     top: 8px;
     left: 8px;
   }
 }

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

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

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

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

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

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

 @media (max-width: 740px) {
   .portfolio__list {
     gap: initial;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -ms-flex-wrap: wrap;
     flex-wrap: wrap;
   }
 }

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

 .portfolio__item {
   -webkit-filter: drop-shadow(0px 1px 30px rgba(0, 0, 0, 0.1));
   filter: drop-shadow(0px 1px 30px rgba(0, 0, 0, 0.1));
   overflow: hidden;
   max-height: 310px;
 }

 @media (max-width: 740px) {
   .portfolio__item {
     margin: 0 5px 10px;
     width: calc(50% - 10px);
     height: 45vw;
   }
 }

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

 .portfolio__item.full {
   grid-row: span 2;
   grid-column: span 2;
   max-height: 630px;
 }

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

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

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

 .portfolio__item:hover::after {
   background: #F3DCB3;
   -webkit-box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
   box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
 }

 .portfolio__item:hover p {
   color: #2E2E2E;
 }

 .portfolio__item:hover svg {
   fill: #2E2E2E;
 }

 .portfolio__item svg {
   fill: #FAFAFA;
 }

 .portfolio__item-link {
   cursor: pointer;
 }

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

 .portfolio__item-link:after {
   content: ' ';
   display: block;
   background: rgba(183, 135, 94, 0.78);
   position: absolute;
   z-index: 0;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
 }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 /*portfolio end*/
 /*measuring start*/
 .measuring {
   padding-bottom: 40px;
   background: url(../img/sq.png) center/cover no-repeat;
   position: relative;
 }

 .measuring::after {
   content: ' ';
   display: block;
   width: 460px;
   height: 1070px;
   background: url(../img/measuring-bg.png) right/contain no-repeat;
   position: absolute;
   right: 0;
   bottom: -450px;
 }

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

 .measuring__list {
   padding-top: 30px;
 }

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

 .measuring__content {
   text-align: left;
 }

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

 @media (max-width: 765px) {

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

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

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

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

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

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

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

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

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

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

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

 .measuring__img-content {
   background: #F3DCB3;
   color: #ffffff;
   border: 1px solid rgba(0, 0, 0, 0.08);
   -webkit-box-shadow: 0 0 0 10px #F3DCB3;
   box-shadow: 0 0 0 10px #F3DCB3;
   z-index: 1;
   margin: auto;
   border-radius: 50%;
   width: 131px;
   height: 131px;
   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;
   position: absolute;
   top: 160px;
   right: 70px;
 }

 @media (max-width: 1100px) {
   .measuring__img-content {
     top: initial;
     bottom: -75px;
     right: 245px;
   }
 }

 @media (max-width: 765px) {
   .measuring__img-content {
     display: none;
   }
 }

 @media (max-width: 1100px) {
   .measuring__item::before {
     top: -20px !important;
   }
 }

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

 @media (max-width: 765px) {
   .measuring__list {
     display: flex;
     flex-wrap: wrap;
   }
 }

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

 .measuring__item:before,
 .equipment__item:before {
   font-weight: 500;
   font-size: 87px;
   line-height: 106px;
   color: rgba(183, 135, 94, 0.2);
   content: "0" counter(num) " ";
   counter-increment: num;
   position: absolute;
   left: 0;
   top: 0;
 }

 .img-label__inner {
   text-align: center;
 }

 .img-label__title {
   font-weight: 600;
   font-size: 15px;
   line-height: 18px;
   color: #2E2E2E;
   font-family: 'Lato', sans-serif;
   margin: 0 0 6px;
 }

 .img-label__staff {
   font-weight: 600;
   font-size: 15px;
   line-height: 18px;
   color: #2E2E2E;
   opacity: 0.8;
   margin: 0;
 }

 /*measuring end*/
 /*backform-section start*/
 .backform-section {
   margin: 40px 0;
   background: #ECECEC;
   border-radius: 3px;
   border: 1px solid rgba(0, 0, 0, 0.1);
   -webkit-box-shadow: 0 0 0 10px #ECECEC;
   box-shadow: 0 0 0 10px #ECECEC;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   padding: 0;
 }

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

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

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

 .backform-section__inner .form-title {
   text-transform: uppercase;
   color: #2E2E2E;
   font-size: 30px;
   line-height: 110%;
   font-family: 'Lato', sans-serif;
   font-weight: normal;
   max-width: 330px;
   margin: 0;
   margin-right: 70px;
 }

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

 @media (max-width: 1200px) {
   .backform-section__inner .form-title {
     max-width: 255px;
     font-size: 20px;
   }
 }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 .equipment__inner {
   margin-top: 60px;
 }

 .equipment__img {
   width: 353px;
 }

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

 /*equipment end*/
 /*quiz start*/
 .quiz__inner {
   background: #FAF2E3;
   border-radius: 3px;
   border: 1px solid rgba(0, 0, 0, 0.1);
   -webkit-box-shadow: 0 0 0 10px #FAF2E3;
   box-shadow: 0 0 0 10px #FAF2E3;
   width: 100%;
   max-width: 1041px;
   margin: 0 auto 40px;
   padding: 45px;
   position: relative;
   z-index: 1;
 }

 /* .quiz__inner:before {
  content: ' ';
  display: block;
  width: 404px;
  height: 409px;
  background: url(../img/ellipse.svg) center/contain no-repeat;
  position: absolute;
  z-index: 0;
  left: -100px;
  bottom: -100px;
} */

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

 /*quiz end*/
 /*advantages start*/
 .advantages {
   padding-top: 80px;
 }

 .advantages__list {
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   text-align: center;
   -ms-flex-pack: distribute;
   justify-content: space-around;
   margin-top: 80px;
 }

 @media (max-width: 800px) {
   .advantages__list {
     -ms-flex-wrap: wrap;
     flex-wrap: wrap;
     max-width: 470px;
     margin: 80px auto 20px;
   }
 }

 @media (max-width: 690px) {
   .advantages__list {
     margin: 30px auto 0;
   }

   .advantages {
     padding-top: 50px;
   }
 }

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

 @media (max-width: 800px) {
   .advantages__item {
     max-width: 50%;
   }
 }

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

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

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

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

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

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

 /*advantages end*/
 /*stock start*/
 .stock {
   padding-top: 0;
 }

 .stock .section-title {
   text-align: left;
   margin-bottom: 20px;
 }

 @media (max-width: 1100px) {
   .stock .section-title {
     font-size: 26px;
   }
 }

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

 .stock .subtitle {
   margin: 0 0 20px;
   font-weight: 500;
   font-size: 30px;
   line-height: 110%;
 }

 @media (max-width: 1100px) {
   .stock .subtitle {
     font-size: 16px;
   }
 }

 .stock__container {
   min-height: 500px;
 }

 .stock__img {
   width: 100%;
   max-width: 50%;
   height: 730px;
   position: relative;
 }

 @media (max-width: 1100px) {
   .stock__img {
     height: 400px;
   }
 }

 .stock__img img {
   position: absolute;
   right: 0;
   top: 0;
   max-width: initial;
 }

 @media (max-width: 1100px) {
   .stock__img img {
     width: 600px;
   }
 }

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

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

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

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

   .stock__content .btn {
     margin: 0 auto;
   }

   .stock__img {
     max-width: 93%;
   }
 }

 @media (max-width: 600px) {
   .stock__img {
     height: 350px;
     margin-bottom: 20px;
   }
 }

 .stock__number {
   font-weight: 300;
   font-size: 204px;
   line-height: 110%;
   color: #B7875E;
 }

 /*stock end*/
 /*instagram start*/
 .instagram {
   padding-top: 40px;
   position: relative;
 }

 .instagram:before {
   content: ' ';
   display: block;
   left: 0;
   top: -50px;
   background: url(../img/instagram-bg.png) left/contain no-repeat;
   width: 300px;
   height: 720px;
   position: absolute;
   z-index: 0;
 }

 .instagram__list {
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   margin: 50px -15px 0;
 }

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

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

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

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

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

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

 .instagram__link img {
   min-width: 100%;
   min-height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
 }

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

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

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

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

 /*instagram end*/
 /*sale start*/
 .sale {
   padding-top: 50px;
   padding-bottom: 49px;
 }

 @media (max-width: 600px) {
   .sale {
     padding-top: 25px;
     padding-bottom: 35px;
   }
 }

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

 .sale__content {
   margin: 0 auto 15px;
   max-width: 780px;
   text-align: center;
   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;
   position: relative;
 }

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

 .sale__content:after {
   content: '10%';
   color: #B7875E;
   font-size: 380px;
   line-height: 100%;
   opacity: 0.04;
   position: absolute;
   top: -83px;
   left: 0;
   z-index: 0;
 }

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

 @media (max-width: 660px) {
   .sale__content:after {
     font-size: 55vw;
     left: -64px;
   }
 }

 @media (max-width: 550px) {
   .sale__content:after {
     top: -57px;
   }
 }

 @media (max-width: 420px) {
   .sale__content:after {
     top: -30px;
     left: -50px;
   }
 }

 .sale__content .section-title {
   margin: 0 auto 32px;
   max-width: 780px;
 }

 .sale__content .section-title .primary-text {
   white-space: normal;
 }

 .sale__content .subtitle {
   font-weight: 500;
   font-size: 30px;
   line-height: 110%;
   margin: 0 0 20px 0;
 }

 @media (max-width: 660px) {
   .sale__content .subtitle {
     font-size: 22px;
   }
 }

 .sale__content .btn {
   position: relative;
   z-index: 1;
 }

 /*sale end*/
 /*reviews start*/
 .reviews .section-title {
   margin-bottom: 78px;
 }

 @media (max-width: 600px) {
   .reviews .section-title {
     margin-bottom: 40px;
   }
 }

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

 .reviews__slider {
   overflow: hidden;
   max-width: 940px;
 }

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

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

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

 .reviews__content {
   margin: 0;
 }

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

 .reviews__top img {
   max-width: 117px;
   border-radius: 50%;
   -o-object-fit: cover;
   object-fit: cover;
   display: block;
   margin-right: 20px;
 }

 @media (max-width: 880px) {
   .reviews__top img {
     max-width: 77px;
   }
 }

 @media (max-width: 480px) {
   .reviews__top img {
     max-width: 50px;
   }

   .reviews__top {
     margin-bottom: 20px;
   }
 }

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

 @media (max-width: 880px) {
   .reviews__name {
     font-size: 26px;
   }
 }

 @media (max-width: 480px) {
   .reviews__name {
     font-size: 18px;
     line-height: 22px;
   }
 }

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

 @media (max-width: 880px) {
   .reviews__text {
     font-size: 20px;
   }
 }

 @media (max-width: 480px) {
   .reviews__text {
     font-size: 14px;
     line-height: 140%;
   }
 }

 .swiper-slide {
   /* Center slide text vertically */
   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;
 }

 @media (min-width: 700px) {
   .swiper-slide.reviews__slide {
     align-items: flex-start;
   }
 }

 .swiper-slide img {
   display: block;
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
 }

 .reviews .swiper-button-next:after,
 .reviews .swiper-button-prev:after {
   display: none;
 }

 .reviews .swiper-button-next,
 .reviews .swiper-button-prev {
   position: initial;
   top: initial;
   left: initial;
   right: initial;
   bottom: initial;
   width: 50px;
   height: 84px;
   margin: 80px 20px 0 20px;
 }

 @media (max-width: 880px) {

   .reviews .swiper-button-next,
   .reviews .swiper-button-prev {
     width: 18px;
     height: 30px;
     margin: 80px 10px 0 20px;
   }
 }

 @media (max-width: 480px) {

   .reviews .swiper-button-next,
   .reviews .swiper-button-prev {
     margin: 0 10px;
   }
 }

 .reviews .swiper-button-next svg,
 .reviews .swiper-button-prev svg {
   fill: #D3B69B;
 }

 .reviews .swiper-button-next:hover svg,
 .reviews .swiper-button-prev:hover svg {
   fill: #C19C7A;
 }

 .reviews__btns {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   position: relative;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   width: 100%;
 }

 @media (max-width: 480px) {
   .reviews__slider-wrap {
     position: relative;
   }

   .reviews__btns {
     height: 30px;
     position: absolute;
     right: 0;
     top: 10px;
     max-width: fit-content;
   }
 }

 .reviews__btns::before {
   content: ' ';
   display: block;
   width: 260px;
   height: 260px;
   background: url(../img/reviews-star.png) center/contain no-repeat;
   position: absolute;
   left: 20px;
   top: -140px;
 }

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

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

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

 @media (max-width: 800px) {
   .how-we-work__list {
     max-width: 665px;
     margin: 55px auto 0;
   }
 }

 @media (max-width: 600px) {
   .how-we-work__list {
     margin: 40px auto 0;
   }
 }

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

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

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

 .how-we-work__item:before {
   content: ' ';
   display: block;
   width: 60px;
   height: 60px;
   margin: 0 auto 30px;
   background: url(../img/block1/block-1.png) center/contain no-repeat;
 }

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

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

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

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

 @media (max-width: 600px) {
   .how-we-work__text {
     margin: 0;
   }

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

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

 /*how-we-work end*/
 /*question-form__section start*/
 .question-form__section {
   background-image: url(../img/question-form-bg.png);
   background-repeat: no-repeat;
   background-position-x: right;
   background-position-y: bottom;
   padding-bottom: 80px;
 }

 .question-form {
   background: #FAF2E3;
   border-radius: 3px;
   border: 1px solid rgba(0, 0, 0, 0.1);
   -webkit-box-shadow: 0 0 0 10px #FAF2E3;
   box-shadow: 0 0 0 10px #FAF2E3;
   max-width: 447px;
   margin: 60px auto 0;
   color: rgba(46, 46, 46, 0.7);
   text-align: center;
   padding: 50px 44px;
   position: relative;
 }

 @media (max-width: 500px) {
   .question-form {
     margin: 30px auto;
     padding: 50px 19px;
   }

   .question-form__section {
     padding-bottom: 50px;
   }
 }

 .question-form:after {
   content: ' ';
   position: absolute;
   width: 991px;
   height: 452px;
   left: calc(50% - 524px);
   top: -23px;
   background: url(../img/question-form__section.png) center/contain no-repeat;
   z-index: -1;
 }

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

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

 .question-form .consent a {
   color: rgba(46, 46, 46, 0.7);
   text-decoration: underline;
 }

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

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

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

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

 /*question-form__section end*/
 /*about start*/
 .about {
   background: #ECECEC;
   padding: 100px 0;
   color: #2E2E2E;
   min-height: 480px;
 }

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

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

 @media (max-width: 900px) {
   .about .section-title {
     font-size: 45px;
   }
 }

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

   .about .section-title {
     font-size: 26px;
   }
 }

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

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

 @media (max-width: 900px) {
   .about__content {
     font-size: 14px;
   }
 }

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

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

 .about__img {
   width: 100%;
   max-width: 567px;
   overflow: hidden;
 }

 @media (max-width: 1240px) {
   .about__img {
     max-width: calc(50% - 115px);
     overflow: hidden;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     margin-right: 70px;
   }

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

 @media (max-width: 880px) {
   .about__img {
     max-width: calc(50% - 63px);
     margin-right: 15px;
   }
 }

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

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

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

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

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

 .about .row {
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
 }

 @media (max-width: 700px) {
   .about .row {
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     margin-left: 0;
     margin-right: 0;
   }
 }

 /*about end*/
 /*question start*/
 .question {
   padding-bottom: 120px;
   background-image: url(../img/question-bg.png);
   background-repeat: no-repeat;
   background-position-x: left;
   background-position-y: -400px;
 }

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

 @media (max-width: 910px) {

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

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

 .question__akk {
   padding: 30px 20px;
 }

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

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

 @media (max-width: 660px) {
   .question__akk {
     max-width: calc(100% - 60px);
     margin: 50px 20px 0;
   }
 }

 .question__item {
   margin-bottom: 20px;
 }

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

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

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

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

 .question__img {
   position: relative;
   margin-top: 30px;
   padding-right: 40px;
 }

 .question__img::before {
   content: ' ';
   display: block;
   position: absolute;
   width: 842px;
   height: 780px;
   background: url(../img/question__img.png) center/contain no-repeat;
   z-index: -1;
 }

 .question__img img {
   margin: 0 auto;
 }

 .question__img-content {
   margin: 0 auto;
 }

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

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

 .question__img-content {
   width: 226px;
   height: 226px;
   background: #F3DCB3;
   border: 1px solid rgba(0, 0, 0, 0.08);
   -webkit-box-shadow: 0 0 0 10px #F3DCB3;
   box-shadow: 0 0 0 10px #F3DCB3;
   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;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
   font-family: "Lato", sans-serif;
   position: absolute;
   bottom: 43px;
   right: 42px;
 }

 @media (max-width: 600px) {
   .question__img-content {
     width: 102px;
     height: 102px;
   }
 }

 .question__img-content .img-label__title {
   font-weight: bold;
   font-size: 25px;
   line-height: 30px;
   color: #2E2E2E;
   margin-bottom: 10px;
 }

 @media (max-width: 600px) {
   .question__img-content .img-label__title {
     font-size: 11px;
     line-height: 14px;
   }
 }

 .question__img-content .img-label__staff {
   color: rgba(46, 46, 46, 0.7);
   font-weight: 600;
   font-size: 25px;
   line-height: 30px;
 }

 @media (max-width: 600px) {
   .question__img-content .img-label__staff {
     font-size: 11px;
     line-height: 14px;
   }
 }

 .question__img-content .img-label__staff a {
   text-decoration: underline;
   color: rgba(46, 46, 46, 0.7);
 }

 .question__img-content .img-label__staff a:hover {
   text-decoration: none;
 }

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

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

   .contacts__map iframe {
     height: 912px;
   }
 }

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

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

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

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

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

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

 .contacts__item {
   font-style: normal;
   text-transform: uppercase;
   font-size: 18px;
   line-height: 110%;
   margin-bottom: 15px;
   font-family: 'Lato', sans-serif;
   display: block;
 }

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

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

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

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

 /*contacts end*/
 /*footer start*/
 .footer {
   background-color: #ffffff;
 }

 .footer__container {
   padding-top: 50px;
   padding-bottom: 50px;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
 }

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

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

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

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

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

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

 .footer .big-phone {
   color: #B7875E;
 }

 .footer__copy,
 .footer__politics {
   font-weight: 300;
   font-size: 12px;
   line-height: 130%;
   display: inline;
   opacity: 0.8;
 }

 .footer__politics {
   text-decoration: underline;
   margin-left: 30px;
 }

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

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

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

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

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

   .footer__menu-list li:last-child .footer__menu-link {
     padding-right: 0;
   }

   .footer__menu {
     margin-bottom: 20px;
   }
 }

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

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

 .footer__contacts {
   margin-left: 20px;
 }

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

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

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

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

 /*footer end*/
 .solutions {
   padding-top: 30px;
   background: url(../img/solutions/solutions-bg.png) top no-repeat;
   background-size: 100vw;
 }

 .solutions .section-title {
   margin: 0 auto 30px;
   max-width: 840px;
 }

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

 .solutions__item:not(:last-child) {
   margin-bottom: 60px;
 }

 @media (max-width: 990px) {
   .solutions__item:not(:last-child) {
     margin-bottom: 20px;
   }
 }

 .solutions__item:nth-child(odd) {
   -webkit-box-orient: horizontal;
   -webkit-box-direction: reverse;
   -ms-flex-direction: row-reverse;
   flex-direction: row-reverse;
 }

 @media (max-width: 640px) {
   .solutions__item:nth-child(odd) {
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
   }
 }

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

 .solutions__content {
   background-color: #ffffff;
   -webkit-box-shadow: inset 0 0 0 14px #ffffff, inset 0 0 0 15px rgba(0, 0, 0, 0.1);
   box-shadow: inset 0 0 0 14px #ffffff, inset 0 0 0 15px rgba(0, 0, 0, 0.1);
   padding: 74px;
   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;
 }

 @media (max-width: 1160px) {
   .solutions__content {
     padding: 74px 50px;
   }
 }

 @media (max-width: 990px) {
   .solutions__content {
     padding: 50px;
   }
 }

 @media (max-width: 768px) {
   .solutions__content {
     padding: 30px;
   }
 }

 @media (max-width: 640px) {
   .solutions__content {
     min-height: 260px;
     -ms-flex-pack: distribute;
     justify-content: space-around;
   }
 }

 .solutions__content p {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   font-size: 30px;
   line-height: 120%;
   margin: 0;
 }

 @media (max-width: 1160px) {
   .solutions__content p {
     font-size: 26px;
   }
 }

 @media (max-width: 990px) {
   .solutions__content p {
     font-size: 18px;
   }
 }

 .solutions__content p::before {
   content: ' ';
   display: block;
   width: 86px;
   height: 60px;
   margin-right: 60px;
   -webkit-box-flex: 0;
   -ms-flex: none;
   flex: none;
 }

 @media (max-width: 1160px) {
   .solutions__content p::before {
     margin-right: 35px;
   }
 }

 @media (max-width: 990px) {
   .solutions__content p::before {
     width: 47px;
     height: 30px;
   }
 }

 @media (max-width: 768px) {
   .solutions__content p::before {
     margin-right: 20px;
   }
 }

 .solutions__content p:nth-child(1)::before {
   background: url(../img/solutions/dizlike.svg) center/contain no-repeat;
 }

 .solutions__content p:nth-child(2)::before {
   background: url(../img/solutions/like.svg) center/contain no-repeat;
 }

 .solutions__img,
 .solutions__content {
   width: 100%;
   max-width: 50%;
 }

 @media (max-width: 640px) {

   .solutions__img,
   .solutions__content {
     max-width: 100%;
   }
 }

 .solutions .btn {
   margin: 0 auto;
 }

 @media (max-width: 990px) {
   .solutions .btn {
     padding: 10px 20px;
     font-size: 13px;
   }
 }

 /*popup form start*/
 .popup-form {
   border: 1px solid rgba(0, 0, 0, 0.1);
   border-radius: 3px;
   background: #FAF2E3;
   -webkit-box-shadow: 0 0 0 10px #313131;
   box-shadow: 0 0 0 10px #FAF2E3;
   color: #2E2E2E;
   text-align: center;
   max-width: 447px;
   width: 100%;
   padding: 50px 45px;
 }

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

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

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

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

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

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

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

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

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

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

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

 /*popup form end*/
 /*politika start*/
 .politika.content__inner {
   padding: 130px 30px 80px;
   margin: auto;
   max-width: 1310px;
 }

 @media screen and (max-width: 480px) {
   .politika.content__inner {
     padding: 130px 20px 40px;
   }

   h1 {
     line-height: 105%;
     font-size: 24px;
   }
 }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 /*# sourceMappingURL=style.css.map */
 .fancybox-container .question-form.popup-form {
   margin: 0;
   overflow: hidden;
 }

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

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

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

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

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

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

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

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

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

 .quiz__inner {
   background: #FAF2E3;
   border-radius: 3px;
   border: 1px solid rgba(0, 0, 0, 0.1);
   -webkit-box-shadow: 0 0 0 10px #FAF2E3;
   box-shadow: 0 0 0 10px #FAF2E3;
   width: 100%;
   max-width: 1041px;
   margin: 0 auto 40px;
   padding: 45px 20px;
   position: relative;
   z-index: 1;
 }

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

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

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

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

 .quiz__title {
   font-size: 28px;
   line-height: 110%;
   text-transform: uppercase;
   text-align: center;
   margin-bottom: 40px;
 }

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

 .quiz__item {
   display: none;
 }

 .quiz__item.active {
   display: block;
 }

 .quiz__checkbox {
   display: none;
 }

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

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

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

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

 @media (max-width: 600px) {
   .quiz__label {
     margin: 0 7px 15px;
     min-width: 50px;
   }
 }

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

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

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

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

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

 .quiz__label span.quiz__label-text:before {
   background: #faf2e3;
   border: 1px solid rgba(0, 0, 0, 0.2);
   width: 16px;
   height: 16px;
   top: 196px;
   left: calc(50% - 8px);
 }

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

 .quiz__label.quiz__label--no-picture span.quiz__label-text:before {
   top: -5px;
 }

 .quiz__label.quiz__label--no-picture span.quiz__label-text:after {
   top: -1px;
 }

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

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

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

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

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

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

 @media (max-width: 600px) {
   .quiz__bottom {
     margin-top: 20px;
     gap: 10px;
   }
 }

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

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

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

 @media (max-width: 720px) {

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

 @media (max-width: 1124px) {

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

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

 .quiz__group.quiz__group-4 {
   justify-content: center;
 }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 .quiz__group.quiz__group-10 .input {
   margin-bottom: 20px;
 }

 .quiz__item.quiz__item10 {
   max-width: 600px;
   margin: 0 auto;
 }

 .quiz__btn--preview {
   background: transparent;
   border: 2px solid #dda431;
 }

 /*quiz end*/
 .input-file input {
   position: absolute;
   visibility: hidden;
 }

 .input-file label {
   width: 318px;
   height: 53px;
   border-radius: 5px;
   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: transparent;
   border: 2px solid #dda431;
   cursor: pointer;
   margin-top: 30px;
   font-size: 16px;
   line-height: 120%;
   text-transform: uppercase;
 }

 @media screen and (max-width: 660px) {
   .input-file label {
     width: 100%;
     max-width: 100%;
   }
 }