/*@font-face {
  font-family: "Ubuntu";
  src: url(../font/Ubuntu-Light.ttf) format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
}
@font-face {
  font-family: "Ubuntu";
  src: url(../font/Ubuntu-Regular.ttf) format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
}
@font-face {
  font-family: "Ubuntu";
  src: url(../font/Ubuntu-Medium.ttf) format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
}
@font-face {
  font-family: "Ubuntu";
  src: url(../font/Ubuntu-Bold.ttf) format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
}
@font-face {
  font-family: "Dela Gothic One";
  src: url(../font/Dela Gothic One-Regular.ttf) format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
}*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Ubuntu", serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #403F3B;
}

.bodyStopScroll {
  overflow: hidden;
  height: 100vh;
}

button {
  outline: none;
  border: none;
  padding: 0;
  font-family: "Ubuntu", serif;
  transition: 0.3s all;
}
button:hover {
  cursor: pointer;
}

input, textarea, select, button {
  border: none;
  outline: none;
  font-family: "Ubuntu", serif;
  transition: 0.3s all;
  caret-color: #6A2126;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  transition: 0.3s all;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

.container {
  max-width: 1210px;
  padding: 0 20px;
  margin: 0 auto;
}

.d-flex {
  display: flex;
}

.d-none {
  display: none !important;
}

.justify-start {
  justify-content: start;
}

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

.justify-between {
  justify-content: space-between;
}

.align-start {
  align-items: start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

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

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.w-full {
  width: 100%;
}

.select {
  width: 280px;
  position: relative;
  white-space: nowrap;
}
.select-head {
  width: 100%;
  height: 52px;
  border-radius: 4px;
  border: 1px solid #BBBBBB;
  background: #fff;
  padding: 16px;
  color: #696F79;
  cursor: pointer;
}
.select-head span {
  display: inline-block;
  margin-right: 16px;
}
.select-head span:last-child {
  margin-right: 5px;
}
.select-head .select-active {
  color: #131313;
}
.select .options {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 6px -2px rgba(17, 24, 28, 0.14);
  border-radius: 4px;
  overflow: hidden;
  z-index: 5;
  display: none;
  padding: 0 12px;
}
.select .options .option {
  padding: 10px 22px;
  text-align-last: left;
  border-bottom: 1px solid #F5F5F5;
  cursor: pointer;
}
.select .options .option:hover {
  color: #9c3138;
  border-color: #9c3138;
}

.showSelect .select-head svg {
  transform: rotate(180deg);
}
.showSelect .options {
  display: block;
}

.title-text {
  font-family: "Dela Gothic One", serif;
  font-size: 44.91px;
  line-height: 56.58px;
  color: #403F3B;
}
.title-text span {
  color: #f35e32;
}

.title-info {
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.5s all;
}
.header-nav {
  margin: 20px 0 25px;
}
.header-nav li {
  font-size: 13px;
  line-height: 15px;
  color: rgba(0, 0, 0, 0.2666666667);
}
.header-nav li:hover {
  color: #f35e32;
}
.header-box {
  padding: 17px 17px 17px 30px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
}
.header-link {
  margin-right: 60px;
}
.header-link .phone {
  margin-right: 20px;
}
.header-link .phone span {
  font-size: 9px;
  line-height: 10px;
  color: #ccc;
}
.header-link .phone a {
  font-size: 15px;
  line-height: 17px;
  font-weight: 500;
  color: #353535;
}
.header-link .phone a:hover {
  color: #f35e32;
}
.header-link .social {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #F3F3F3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: 0.3s all;
}
.header-link .social img {
  transition: 0.3s all;
}
.header-link .social:last-child {
  margin-right: 0;
}
.header-link .social:hover {
  border-color: #f35e32;
}
.header-link .social:hover img {
  transform: scale(1.3);
}
.header-btn {
  font-size: 13px;
  line-height: 14px;
  font-weight: 500;
}
.header-btn button {
  height: 35px;
  border-radius: 50px;
  padding: 0 20px;
  font-weight: 500;
}
.header-btn .sign-in {
  background: #fdf4f2;
  color: #887773;
}
.header-btn .sign-in:hover {
  background: #353535;
  color: #fff;
}
.header-btn .register {
  background: #f35e32;
  color: #fff;
  box-shadow: 0px 4px 15px 0px rgba(243, 94, 50, 0.4);
}
.header-btn .register:hover {
  box-shadow: none;
}
.header-btn p {
  color: #d0d0d0;
  margin: 0 15px;
}
.header .btns {
  display: none;
}
.header .btns button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .btns .login-btn {
  background: #f35e32;
  margin-right: 6px;
  box-shadow: 0px 6px 10px 0px rgba(243, 94, 50, 0.4);
}
.header .btns .menu-btn {
  background: #fff;
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.1);
}
.header .menu {
  position: absolute;
  top: 0;
  right: -100%;
  width: 95%;
  height: 100vh;
  z-index: 99999;
  padding: 30px;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s all;
}
.header .menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
}
.header .menu-content {
  position: relative;
  z-index: 2;
}
.header .menu-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.0666666667);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.1);
}
.header .menu-nav {
  margin: 40px 0 30px;
}
.header .menu-nav li {
  margin-bottom: 10px;
}
.header .menu-nav li:last-child {
  margin-bottom: 0;
}
.header .menu-nav li a {
  width: 100%;
  height: 35px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.0666666667);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-size: 13px;
  line-height: 14px;
}
.header .menu-nav li a::after {
  content: url("../img_main/svg/arrow-link.svg");
}
.header .menu-link {
  margin-top: 30px;
}
.header .menu-link .phone {
  margin-bottom: 17px;
}
.header .menu-link .phone span {
  font-size: 9px;
  line-height: 10px;
  color: #ccc;
  opacity: 0.6;
  margin-bottom:5px;
}
.header .menu-link .phone a {
  font-size: 15px;
  line-height: 17px;
  font-weight: 500;
  color: #fff;
}
.header .menu-link .phone a:hover {
  color: #f35e32;
}
.header .menu-link .social {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1333333333);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: 0.3s all;
}
.header .menu-link .social img {
  transition: 0.3s all;
}
.header .menu-link .social:last-child {
  margin-right: 0;
}
.header .menu-link .social:hover {
  border-color: #f35e32;
}
.header .menu-link .social:hover img {
  transform: scale(1.3);
}
.header .menu-btn {
  font-size: 13px;
  line-height: 14px;
  font-weight: 500;
}
.header .menu-btn button {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  text-align: center;
}
.header .menu-btn .sign-in {
  background: #fff;
  color: #403F3B;
  margin-bottom: 10px;
}
.header .menu-btn .sign-in:hover {
  background: #353535;
  color: #fff;
}
.header .menu-btn .register {
  background: #f35e32;
  color: #fff;
  box-shadow: 0px 4px 15px 0px rgba(243, 94, 50, 0.4);
}
.header .menu-btn .register:hover {
  box-shadow: none;
}
.header .showMenu {
  right: 0;
}

.headerSticy {
  top: -58px;
}

.main .block1 {
  height: 667px;
  background-image: url("../img_main/png/block1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 170px;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
}
.main .block1 .title-info {
  margin: 23px 0;
}
.main .block1 .title-text {
  color: #222;
}
.main .block1-info {
  font-family: "Dela Gothic One", serif;
  font-size: 20px;
  line-height: 20px;
  color: #222222;
}
.main .block1-info img {
  margin-right: 17px;
}
.main .block2 {
  margin-top: -27px;
}
.main .block2-item {
  width: 32%;
  border-radius: 30px;
  background: #fff;
  padding: 28px 30px;
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.1);
}
.main .block2-item .item-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #403f3b;
}
.main .block2-item .item-title span {
  color: #f35e32;
}
.main .block2-item .item-text {
  font-size: 14px;
  line-height: 27px;
  font-weight: 300;
  margin-top: 10px;
}
.main .block2-item .item-text span {
  font-weight: 500;
}
.main .block3 {
  margin-top: 80px;
  overflow: hidden;
}
.main .block3 .container {
  position: relative;
  padding-bottom: 80px;
}
.main .block3 .chair {
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 47%;
}
.main .block3 .item {
  border-radius: 30px;
  padding: 40px 0 0 50px;
  display: flex;
  align-items: start;
  flex-direction: column;
}
.main .block3 .item-suptitle {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
}
.main .block3 .item-title {
  font-family: "Dela Gothic One", serif;
  font-size: 80px;
  /*line-height: 56px;*/
  /*margin: 16px 0 30px;*/
  line-height: 76px;
  margin: 10px 0 20px;
}
.main .block3 .item-subtitle {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #797979;
  padding: 4px 12px;
  border-radius: 13px;
  background: #343434;
}
.main .block3 .item-box:first-child .items {
  width: 59%;
}
.main .block3 .item-box:first-child .items .item {
  width: 100% !important;
  background-image: url("../img_main/png/block3.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.main .block3 .item-box:first-child .items .item:last-child {
  display: none;
}
.main .block3 .item-box:first-child .item {
  height: 280px;
  color: #fff;
}
.main .block3 .item-box:first-child .item:last-child {
  width: 38%;
  background-image: linear-gradient(to right, #303030, #2c2c2c, #292929, #252525, #222222);
}
.main .block3 .item-box:last-child {
  width: 63%;
  margin-top: 30px;
}
.main .block3 .item-box:last-child .item {
  height: 200px;
  background: #EEEEEE;
  width: 48%;
  color: #222222;
}
.main .block3 .item-box:last-child .item-title {
  color: #3c3c3c;
}
.main .block3 .item-box:last-child .item:last-child .item-title {
  color: #f35e32;
}
.main .block4 {
  background: #fff;
  position: relative;
  z-index: 2;
  border-radius: 50px;
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.1);
  padding: 80px 0 280px;
  position: relative;
  z-index: 6;
}
.main .block4-img {
  width: 85%;
}
.main .block4-img_mob {
  display: none;
}
.main .block4 .title-text {
  margin: 16px 0 26px;
}
.main .block4-box {
  position: relative;
}
.main .block4 .item {
  color: #403f3b;
  font-size: 15px;
  line-height: 24px;
  font-weight: 300;
  width: 19%;
  position: absolute;
}
.main .block4 .item:nth-child(1) {
  top: 60px;
  left: 0;
}
.main .block4 .item:nth-child(2) {
  top: 60px;
  right: 0;
}
.main .block4 .item:nth-child(3) {
  top: 42%;
  left: 0;
}
.main .block4 .item:nth-child(4) {
  top: 42%;
  right: 0;
}
.main .block4 .item-icon {
  display: none;
}
.main .block4 .item-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.main .block4 .item-text {
  margin-top: 11px;
  font-family: Ubuntu;
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
}
.main .block4 .item-list {
  padding-left: 20px;
  margin-top: 11px;
  font-family: Ubuntu;
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
}
.main .block4 .item-list li {
  list-style-type: disc;
}
.main .block4-info {
  width: 973px;
  height: 296px;
  border-radius: 54px;
  background-image: url(../img_main/png/block4.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 58px 50px;
  color: #fff;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
}
.main .block4-info::before {
  content: url(../img_main/png/shape.png);
  position: absolute;
  bottom: 97.5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.main .block4-info .info-item {
  width: 60%;
}
.main .block4-info .item-top {
  font-size: 18px;
  line-height: 27px;
}
.main .block4-info .basket {
  min-width: 70px;
  height: 70px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(73, 63, 49);
  margin-right: 22px;
}
.main .block4-info .info-title {
  font-size: 35px;
  line-height: 44px;
  font-weight: 700;
  color: #f89d24;
  margin-top: 17px;
}
.main .block5 {
  width: 100%;
  height: 691px;
  background-image: url(../img_main/png/block5.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  padding-top: 158px;
}
.main .block5-title {
  font-size: 35px;
  line-height: 51px;
  font-weight: 700;
  color: #222222;
  width: 58%;
}
.main .block5-title span {
  color: #f35e32;
}
.main .block5-item img {
  margin-left: -50px;
  margin-top: -20px;
}
.main .block5-item img:nth-child(2), .main .block5-item img:nth-child(3) {
  margin-left: -70px;
}
.main .block6 {
  margin-top: -150px;
  position: relative;
  z-index: 3;
}
.main .block6 .container {
  position: relative;
}
.main .block6-item {
  width: 55%;
  min-height: 790px;
  border-radius: 40px;
  background-image: url(../img_main/png/block6_1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  color: white;
  padding: 60px;
}
.main .block6-item .title-text {
  font-size: 35px;
  line-height: 45px;
  color: #fff;
}
.main .block6-item .item li {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  margin-top: 40px;
}
.main .block6-item .item li:first-child {
  margin-top: 30px;
}
.main .block6-item .item li img {
  margin-right: 20px;
}
.main .block6-item:first-child {
  padding-right: 100px;
}
.main .block6-item:last-child {
  background-image: url(../img_main/png/block6_2.png);
  position: absolute;
  top: 80px;
  right: 20px;
  width: 50%;
  z-index: 2;
}
.main .block7 {
  background-image: url(../img_main/png/block7.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 824px;
  display: flex;
  align-items: center;
}
.main .block7 .title-text {
  font-size: 42px;
  line-height: 62px;
  margin: 20px 0 27px;
}
.main .block7 .info-text {
  font-size: 18px;
  line-height: 18px;
}
.main .block7 .info-text span {
  color: #f35e32;
}
.main .block8 {
  margin-top: -135px;
}
.main .block8-box {
  display: flex;
  flex-wrap: wrap;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.main .block8-item {
  position: relative;
  padding: 50px;
}
.main .block8-item .item-text {
  font-size: 20px;
  line-height: 32px;
  margin-top: 16px;
  position: relative;
  z-index: 2;
  font-weight: 400;
}
.main .block8-item .item-text span {
  font-weight: 700;
  color: #f35e32;
}
.main .block8-item .item-img {
  position: absolute;
  right: 0;
  bottom: 0;
}
.main .block8-item:nth-child(1) {
  width: 40%;
  min-height: 350px;
  border-right: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
}
.main .block8-item:nth-child(1) .item-text {
  width: 80%;
}
.main .block8-item:nth-child(1) .item-img {
  width: 70%;
}
.main .block8-item:nth-child(2) {
  width: 60%;
  min-height: 350px;
  border-bottom: 1px solid #DADADA;
}
.main .block8-item:nth-child(2) .item-text {
  width: 60%;
}
.main .block8-item:nth-child(2) .item-img {
  width: 50%;
}
.main .block8-item:nth-child(3) {
  width: 60%;
  min-height: 309px;
  border-right: 1px solid #DADADA;
}
.main .block8-item:nth-child(3) .item-text {
  width: 70%;
}
.main .block8-item:nth-child(3) .item-img {
  width: 40%;
}
.main .block8-item:nth-child(4) {
  width: 40%;
  min-height: 309px;
}
.main .block8-item:nth-child(4) .item-text {
  width: 70%;
}
.main .block8-item:nth-child(4) .item-img {
  width: 60%;
}
.main .block9 {
  margin-top: 100px;
  width: 100%;
  border-radius: 50px;
  background-image: url(../img_main/png/block9.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 82px 0;
}
.main .block9-text {
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  width: 530px;
  color: #403f3b;
}
.main .block9 .title-text {
  color: #bdb3ad;
  font-size: 50px;
  line-height: 62px;
}
.main .block9-info {
  width: 499px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  padding: 15px;
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 27px;
  margin: 32px 0 28px;
}
.main .block9-info img {
  margin-right: 20px;
}
.main .block10 {
  margin-top: -30px;
}
.main .block10 .num {
  width: 70px;
  height: 35px;
  border-radius: 20px;
  background: #ffeae3;
  color: #f35e32;
  font-size: 17px;
  line-height: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .block10 .subtitle {
  font-size: 35px;
  line-height: 45px;
  font-weight: 700;
  color: #403f3b;
}
.main .block10 .subtitle-text {
  font-size: 18px;
  line-height: 27px;
  color: #403f3b;
}
.main .block10-top {
  background: #f35e32;
  display: flex;
  justify-content: end;
  padding: 66px;
  position: relative;
  border-radius: 40px 40px 0 40px;
  background-image: url(../img_main/png/block10.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.main .block10-top .top-title {
  font-size: 30px;
  line-height: 42px;
  font-weight: 700;
  color: #fff;
}
.main .block10-top .top-title span {
  color: #f35e32;
  background: #fff;
  padding: 0 4px 6px;
  border-radius: 10px;
}
.main .block10-box {
  background: #f35e32;
  padding-bottom: 90px;
  position: relative;
  border-end-end-radius: 40px;
  margin-top: -1px;
}
.main .block10-box::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 500%;
  height: 100%;
  background: #f35e32;
}
.main .block10-box .one-img {
  position: absolute;
  right: 30px;
  top: 22%;
  width: 150px;
}
.main .block10-box .form-img {
  position: absolute;
  right: 7.5%;
  top: 23%;
  width: 30%;
}
.main .block10-box .info-box {
  width: 78%;
  background: #fff;
  padding: 138px 50px 98px 160px;
  position: relative;
}
.main .block10-box .info-box::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 500%;
  height: 100%;
  background: #fff;
}
.main .block10-box .info-box .title-text {
  font-size: 30px;
  line-height: 30px;
  color: #cacac8;
}
.main .block10-box .info-box .num {
  margin: 52px 0 22px;
}
.main .block10-box .info-box .subtitle-text {
  margin: 20px 0 15px;
}
.main .block10-box .info-box .info-list {
  display: flex;
}
.main .block10-box .info-box .info-list li {
  padding: 16px 15px;
  border-radius: 11px;
  background: #f5f5f5;
  font-size: 14px;
  line-height: 15px;
  font-weight: 500;
  color: #737373;
  display: flex;
  align-items: center;
  margin-right: 17px;
}
.main .block10-box .info-box .info-list li:last-child {
  margin-right: 0;
}
.main .block10-box .info-box .info-list li::before {
  content: url(../img_main/svg/check.svg);
  margin-right: 11px;
}
.main .block10 .item-box {
  padding: 15px;
  border-radius: 26px;
  background: #fff;
  font-size: 15px;
  line-height: 23px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
}
.main .block10 .item-box img {
  margin-right: 20px;
}
.main .block10 .item2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: url(../img_main/png/item2-bg.png);
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}
.main .block10 .item2 .item2-img {
  width: 45%;
  height: 611px;
  position: relative;
}
.main .block10 .item2 .item2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main .block10 .item2 .item2-img::before {
  content: "";
  width: 33px;
  height: 33px;
  background: #413f3b;
  position: absolute;
  right: -10px;
  top: 35%;
  transform: rotate(45deg);
}
.main .block10 .item2 .subtitle {
  margin: 22px 0 25px;
}
.main .block10 .item2-info {
  width: 42%;
}
.main .block10 .item2 .item-box {
  margin-top: 30px;
}
.main .block10 .item3 {
  background: #f5f5f5;
}
.main .block10 .item3 .container {
  position: relative;
}
.main .block10 .item3 .lines {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: contain;
}
.main .block10 .item3-info {
  width: 43%;
  padding-left: 60px;
}
.main .block10 .item3 .subtitle {
  margin: 20px 0;
}
.main .block10 .item3 .item-box {
  margin-top: 30px;
}
.main .block10 .item3-img {
  width: 50%;
  object-fit: cover;
  mix-blend-mode: darken;
}
.main .block10 .item4 {
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.main .block10 .item4-box {
  padding-bottom: 90px;
  background: #f35e32;
  border-radius: 0 0 0 50px;
  position: relative;
}
.main .block10 .item4-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 500%;
  height: 100%;
  background: #f35e32;
}
.main .block10 .item4-box .rubl {
  position: absolute;
  top: 70px;
  left: 50px;
  width: 210px;
}
.main .block10 .item4-box .payment {
  position: absolute;
  top: 120px;
  left: 150px;
  z-index: 3;
  width: 380px;
}
.main .block10 .item4-info {
  width: 67%;
  padding: 100px 0 78px;
  background: #fff;
  position: relative;
  margin-left: auto;
  padding-left: 190px;
}
.main .block10 .item4-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 500%;
  height: 100%;
  background: #fff;
}
.main .block10 .item4 .subtitle {
  margin: 22px 0 19px;
}
.main .block10 .item4 .lock {
  padding: 13px 22px;
  background: #f35e32;
  color: #fff;
  font-size: 18px;
  line-height: 27px;
  border-radius: 30px;
  margin: 30px 0 25px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
}
.main .block10 .item4 .lock img {
  margin-right: 13px;
}
.main .block10 .item4-subtitle {
  font-size: 15px;
  line-height: 29px;
  font-weight: 500;
}
.main .block10 .item4-text {
  font-size: 15px;
  line-height: 29px;
  margin: 15px 0 20px;
}
.main .block10 .item4 .item-box {
  box-shadow: none;
  padding: 0;
  margin-bottom: 25px;
}
.main .block10 .item4 .item4-img_mob {
  display: none;
}
.main .block10 .item5 {
  margin-top: -150px;
}
.main .block10 .item5-top {
  padding-top: 241px;
  position: relative;
}
.main .block10 .item5-top .top-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.6;
  object-fit: cover;
  object-position: center;
}
.main .block10 .item5-top .info {
  position: relative;
  z-index: 2;
}
.main .block10 .item5-top .subtitle {
  margin: 20px 0;
}
.main .block10 .item5-top .step-suptitle {
  font-size: 30px;
  line-height: 45px;
  font-weight: 700;
  color: #f35e32;
  margin: 65px 0 36px;
  position: relative;
  z-index: 3;
}
.main .block10 .item5 .step {
  width: 90%;
  margin: 0 auto;
  padding: 60px;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0px 30px 80px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-top: 20px;
}
.main .block10 .item5 .step-title {
  font-size: 10px;
  line-height: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f35e32;
}
.main .block10 .item5 .step-subtitle {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin: 15px 0;
}
.main .block10 .item5 .step-text {
  font-size: 15px;
  line-height: 24px;
}
.main .block10 .item5 .step-info {
  width: 40%;
  position: relative;
  z-index: 2;
}
.main .block10 .item5 .step-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  object-fit: cover;
}
.main .block10 .item5 .step-img:last-child {
  display: none;
}
.main .block10 .item5 .steps .step:nth-child(1) .step-img, .main .block10 .item5 .steps .step:nth-child(3) .step-img {
  left: 0;
}
.main .block10 .item5 .steps .step:nth-child(1) .step-info, .main .block10 .item5 .steps .step:nth-child(3) .step-info {
  margin-left: auto;
}
.main .block10 .item5 .steps .step:nth-child(2) .step-info {
  width: 45%;
}
.main .block10 .item6 {
  overflow: hidden;
}
.main .block10 .item6 .container {
  padding-bottom: 90px;
}
.main .block10 .item6-box {
  padding: 60px;
  position: relative;
  background: #fff;
  border-radius: 35px;
  box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.1);
  margin: 90px 0 40px;
}
.main .block10 .item6-box .item6-title {
  font-size: 30px;
  line-height: 45px;
  font-weight: 700;
  position: relative;
  z-index: 3;
}
.main .block10 .item6-box .item6-title span {
  color: #f35e32;
}
.main .block10 .item6-box .item6-bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
}
.main .block10 .item6-box .item6-img {
  position: absolute;
  right: 0;
  top: 65%;
  transform: translateY(-50%);
  height: 190%;
  z-index: 2;
}
.main .block10 .item6-box .item6-mob {
  display: none;
}
.main .block10 .item6-info {
  padding: 25px;
  border-radius: 35px;
  background: #2f2f2f;
  color: #fff;
  position: relative;
  z-index: 3;
  margin-bottom: 40px;
}
.main .block10 .item6-info .left {
  width: 53%;
}
.main .block10 .item6-info .left img {
  margin-right: 30px;
}
.main .block10 .item6-info .left-title {
  font-size: 25px;
  line-height: 33px;
  font-weight: 700;
}
.main .block10 .item6-info .left-title span {
  color: #f35e32;
}
.main .block10 .item6-info .right-text {
  font-size: 15px;
  line-height: 27px;
  width: 43%;
}
.main .block10 .item6 .create-new_order {
  border-radius: 15px;
  background: #f35e32;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  padding: 10px 10px 10px 25px;
  display: flex;
  align-items: center;
}
.main .block10 .item6 .create-new_order span {
  display: inline-block;
  margin-right: 15px;
}
.main .block10 .item6 .create-new_order:hover {
  opacity: 0.8;
}
.main .block11 .container {
  border-top: 1px solid rgba(0, 0, 0, 0.0666666667);
  padding: 100px 20px 80px;
}
.main .block11-item {
  background: #fff2ee;
  border-radius: 30px;
  padding: 35px;
  position: relative;
  overflow: hidden;
}
.main .block11-item .item-img {
  position: absolute;
  bottom: 0;
  right: 0;
  mix-blend-mode: darken;
}
.main .block11-item .title-text {
  font-size: 30px;
  line-height: 30px;
  color: #f35e32;
}
.main .block11-item .item-title {
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  margin-top: 10px;
}
.main .block11-item .item-text {
  font-size: 14px;
  line-height: 21px;
  margin-top: 15px;
}
.main .block11 .block11-top .block11-item {
  width: 45%;
}
.main .block11 .block11-top .block11-item .item-text {
  width: 75%;
}
.main .block11-info {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.main .block11-info .title-text {
  font-size: 35px;
  line-height: 50px;
}
.main .block11-info .info {
  padding: 8px 20px;
  border-radius: 25px;
  background: #ffebe5;
  font-size: 18px;
  line-height: 29px;
  font-weight: 500;
  margin-top: 18px;
}
.main .block11 .block11-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}
.main .block11 .block11-box .block11-item {
  margin-top: 15px;
}
.main .block12 {
  margin: 100px 0;
}
.main .block12 .container {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
}
.main .block12 .title-text {
  font-size: 35px;
  line-height: 50px;
  width: 48%;
  position: relative;
}
.main .block12 .title-text::before {
  content: url(../img_main/svg/arrow-up2.svg);
  position: absolute;
  left: 0;
  top: -45px;
}
.main .block12-box {
  width: 45%;
  height: 165px;
  border-radius: 25px;
  box-shadow: 0px 20px 100px 0px rgba(0, 0, 0, 0.1);
}
.main .block12-box .item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  width: 35%;
  border-right: 1px solid #F1F1F1;
}
.main .block12-box .item img {
  margin-bottom: 20px;
}
.main .block12-box .item:first-child {
  width: 30%;
}
.main .block12-box .item:last-child {
  border: none;
}
.main .block13 {
  position: relative;
  z-index: 3;
}
.main .block13-box {
  padding: 70px;
  border-radius: 50px;
  background: #f35e32;
  position: relative;
  overflow: hidden;
}
.main .block13-box .box-img {
  width: 55%;
  position: absolute;
  top: -70px;
  right: -1%;
  mix-blend-mode: darken;
}
.main .block13 .title-text {
  color: #fff;
  font-size: 55px;
  line-height: 70px;
  position: relative;
  z-index: 3;
}
.main .block13 .title-text span {
  background: #fff;
  border-radius: 15px;
  line-height: 55px;
  padding: 0 15px 5px;
  display: inline-block;
}
.main .block13 .info-text {
  font-size: 18px;
  line-height: 27px;
  font-weight: 300;
  margin-top: 20px;
  color: #fff;
  position: relative;
  z-index: 3;
}
.main .block13 .faqs {
  margin-top: 45px;
  position: relative;
  z-index: 3;
}
.main .block13 .faqs .faq {
  margin-bottom: 20px;
  border-radius: 30px;
  background: #fff;
}
.main .block13 .faqs .faq-head {
  padding: 20px 20px 20px 40px;
  position: relative;
  cursor: pointer;
}
.main .block13 .faqs .faq-head div {
  max-width: 80%;
}
.main .block13 .faqs .faq-head .head-num {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: #f35e32;
  margin-right: 67px;
}
.main .block13 .faqs .faq-head .head-title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
}
.main .block13 .faqs .faq-head .head-title span {
  color: #f35e32;
}
.main .block13 .faqs .faq-head .arrow {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: rgba(255, 233, 227, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.main .block13 .faqs .faq-head .arrow img {
  transition: 0.3s all;
}
.main .block13 .faqs .faq-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 0;
  overflow: hidden;
  transition: 0.3s all;
  padding: 0 80px 0 133px;
}
.main .block13 .faqs .faq-body .body-text {
  width: 50%;
}
.main .block13 .faqs_noimg .faq-body .body-text {
  width: 100%;
}
.main .block13 .faqs .faq-body .body-text p {
  font-size: 16px;
  line-height: 28px;
  margin-top: 17px;
}
.main .block13 .faqs .faq-body .body-text p:first-child {
  margin: 0;
}
.main .block13 .faqs .faq-body .body-img {
  width: 48%;
  object-fit: contain;
}
.main .block13 .faqs .showFaq .faq-head {
  border-bottom: 1px solid rgba(0, 0, 0, 0.0666666667);
}
.main .block13 .faqs .showFaq .faq-head .arrow img {
  transform: rotate(180deg);
}
.main .block13 .faqs .showFaq .faq-body {
  height: auto;
  padding: 25px 80px 25px 133px;
}
.main .block13 .box-text {
  color: #f7f7f7;
  font-size: 35px;
  line-height: 50px;
  position: relative;
  margin-top: 80px;
}
.main .block13 .box-text span {
  display: inline-block;
  background: #222;
  color: #fff;
  line-height: 30px;
  border-radius: 10px;
  padding: 0 10px 10px;
}
.main .block13 .box-text::before {
  content: url(../img_main/svg/arrow-up3.svg);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.main .block14 {
  margin-top: -20px;
  overflow: hidden;
}
.main .block14-info {
  width: 55%;
  padding-left: 40px;
  position: relative;
  background: #fff;
  z-index: 1;
}
.main .block14 .container {
  padding: 150px 20px 120px;
  position: relative;
}
.main .block14 .container .line {
  position: absolute;
  left: 20px;
  top: 0;
  height: 100%;
  z-index: 2;
}
.main .block14 .suptitle {
  font-size: 16px;
  line-height: 26px;
}
.main .block14 .suptitle span {
  color: #f35e32;
}
.main .block14 .suptext {
  font-size: 16px;
  line-height: 26px;
}
.main .block14 .suptext span {
  color: #f35e32;
  font-weight: 700;
}
.main .block14 .title-text {
  font-size: 30px;
  line-height: 43px;
  margin: 17px 0 35px;
}
.main .block14 .regis-btn {
  padding: 11px 11px 11px 25px;
  border-radius: 16px;
  background: #f35e32;
  color: #fff;
  font-size: 15px;
  line-height: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  position: relative;
}
.main .block14 .regis-btn span {
  display: inline-block;
  margin-right: 16px;
}
.main .block14 .regis-btn:hover {
  opacity: 0.8;
}
.main .block14 .regis-btn::before {
  content: url(../img_main/svg/arrow-c.svg);
  position: absolute;
  left: 110%;
  bottom: 5px;
}
.main .block14-bg {
  width: 50%;
  object-fit: cover;
  mix-blend-mode: lighten;
  position: absolute;
  right: -3%;
  bottom: 0;
}
.main .faq_page {
  margin: 200px 0 50px;
}
.main .faq_page .block13-box {
  background: #fff;
  border-radius: 0;
  padding: 0;
  overflow: visible;
}
.main .faq_page .title-text {
  color: #222;
  font-size: 44px;
  line-height: 56px;
}
.main .faq_page .title-text span {
  background: transparent;
}
.main .faq_page .info-text {
  font-size: 17px;
  line-height: 29px;
  font-weight: 300;
  margin: 40px 0 100px;
  color: #1f1f1f;
}
.main .faq_page .call {
  font-size: 17px;
  line-height: 17px;
  font-weight: 500;
  color: #f35e32;
}
.main .faq_page .call::after {
  content: url(../img_main/svg/arrow-call.svg);
  margin-left: 5px;
}
.main .faq_page .call:hover {
  opacity: 0.8;
}
.main .faq_page .box-img {
  right: 0;
  top: -130px;
}
.main .faq_page .faqs {
  margin-top: 76px;
}
.main .faq_page .faqs .faq {
  box-shadow: 0px 15px 65px 0px rgba(0, 0, 0, 0.1);
}
.main .block15 {
  overflow: hidden;
}
.main .block15 .container {
  padding: 200px 20px 90px;
  position: relative;
}
.main .block15-img {
  position: absolute;
  height: 83%;
  object-fit: contain;
  bottom: 20px;
  right: 0%;
  mix-blend-mode: darken;
}
.main .block15-info {
  width: 435px;
  position: relative;
  z-index: 3;
}
.main .block15 .title-text {
  font-size: 44px;
  line-height: 52px;
  color: #222;
}
.main .block15 .info {
  padding: 10px;
  background: #f35e32;
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  border-radius: 25px;
  margin: 25px 0;
}
.main .block15 .info img {
  margin-right: 10px;
}
.main .block15 .info-text {
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
}
.main .block15 .info-list {
  margin: 0 0 35px;
}
.main .block15 .info-list li {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  margin-top: 15px;
}
.main .block15 .info-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f35e32;
  margin-right: 8px;
}
.main .block15 .info-sub {
  width: 477px;
  padding: 10px;
  background: #fff;
  color: #403F3B;
  font-size: 15px;
  line-height: 20px;
  border-radius: 25px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
}
.main .block15 .info-sub img {
  margin-right: 10px;
}
.main .block16 {
  background-image: url(../img_main/png/bg-white.png);
  background-size: 100% 100%;
  background-position: top;
  background-repeat: no-repeat;
  padding: 190px 0 188px;
  border-radius: 50px;
  margin-top: -115px;
}
.main .block16 .title-text {
  font-size: 35px;
  line-height: 52px;
}
.main .block16-box {
  margin-top: 40px;
}
.main .block16-item {
  min-height: 290px;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  padding: 40px;
  margin-bottom: 30px;
}
.main .block16-item:last-child {
  margin-bottom: 0;
}
.main .block16-item .item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.main .block16-item .item-info {
  position: relative;
  z-index: 2;
}
.main .block16-item .item-title {
  font-size: 25px;
  line-height: 34px;
  font-weight: 500;
  margin-top: 15px;
}
.main .block16-item .item-title span {
  color: #f35e32;
}
.main .block16-item .item-text {
  font-size: 15px;
  line-height: 28px;
  font-weight: 300;
  margin-top: 10px;
}
.main .block16-item .item-price {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  padding: 10px;
  font-size: 15px;
  line-height: 20px;
  position: absolute;
  bottom: 40px;
  right: 40px;
}
.main .block16-item .item-price img {
  margin-right: 15px;
}
.main .block16-item:nth-child(1) {
  width: 32%;
  color: #fff;
}
.main .block16-item:nth-child(2) {
  width: 66%;
  color: #403F3B;
}
.main .block16-item:nth-child(2) .item-info {
  width: 55%;
}
.main .block16-item:nth-child(3) {
  width: 49%;
  color: #fff;
}
.main .block16-item:nth-child(3) .item-info {
  width: 75%;
}
.main .block16-item:nth-child(4) {
  width: 49%;
  color: #fff;
}
.main .block16-item:nth-child(4) .item-info {
  width: 60%;
}
.main .block16-item:nth-child(5) {
  width: 100%;
  color: #403F3B;
}
.main .block16-item:nth-child(5) .item-info {
  width: 35%;
}
.main .block17 {
  padding: 80px 0 100px;
}
.main .block17 .container {
  max-width: 1010px;
}
.main .block17-top .title-text {
  font-size: 44px;
  line-height: 57px;
  margin-right: 40px;
}
.main .block17-top .top-info {
  padding: 45px;
  border-radius: 30px;
  background: #f35e32;
  font-size: 25px;
  line-height: 25px;
  font-weight: 700;
  color: #fff;
  position: relative;
  box-shadow: 0px 20px 80px 0px rgba(243, 94, 50, 0.6);
}
.main .block17-top .top-info::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  left: -10px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f35e32;
}
.main .block17-top .info-text {
  font-size: 20px;
  line-height: 32px;
  margin: 46px 0;
}
.main .block17-top .top-item {
  width: 32%;
  padding: 30px 25px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.1);
}
.main .block17-top .top-item p {
  font-size: 16px;
  line-height: 26px;
  margin-top: 12px;
}
.main .block17-top .top-item p span {
  color: #f35e32;
}
.main .block17 .steps {
  margin-top: 80px;
}
.main .block17 .steps-title {
  font-size: 35px;
  line-height: 40px;
  font-weight: 700;
}
.main .block17 .steps .step {
  margin-top: 30px;
  border-radius: 50px;
  position: relative;
  padding: 60px;
  box-shadow: 0px 30px 80px 0px rgba(0, 0, 0, 0.1);
}
.main .block17 .steps .step .mob-img {
  display: none;
}
.main .block17 .steps .step-info {
  position: relative;
  z-index: 2;
}
.main .block17 .steps .step-num {
  font-size: 10px;
  line-height: 10px;
  font-weight: 500;
  color: #f35e32;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.main .block17 .steps .step-title {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-top: 15px;
}
.main .block17 .steps .step-title span {
  color: #f35e32;
}
.main .block17 .steps .step-text {
  font-size: 15px;
  line-height: 24px;
  margin-top: 15px;
}
.main .block17 .steps .step-text span {
  color: #f35e32;
  font-weight: 700;
}
.main .block17 .steps .step:nth-child(1) {
  margin-top: 40px;
  background-image: url(../img_main/png/st1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  display: flex;
  justify-content: end;
  padding-right: 50px;
  z-index: 1;
}
.main .block17 .steps .step:nth-child(1) .step-info {
  width: 45%;
}
.main .block17 .steps .step:nth-child(2) {
  background-image: url(../img_main/png/st2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  z-index: 2;
}
.main .block17 .steps .step:nth-child(2) .step-info {
  width: 40%;
}
.main .block17 .steps .step:nth-child(3) {
  display: flex;
  justify-content: end;
  z-index: 3;
}
.main .block17 .steps .step:nth-child(3) .step-info {
  width: 40%;
}
.main .block17 .steps .step:nth-child(3) .step-img {
  position: absolute;
  left: 8%;
  top: 0;
  height: 100%;
}
.main .block17 .steps .step:nth-child(4) {
  z-index: 4;
}
.main .block17 .steps .step:nth-child(4) .arrow {
  position: absolute;
  top: 35px;
  left: 37%;
}
.main .block17 .steps .step:nth-child(4) .step-info {
  width: 46%;
}
.main .block17 .steps .step:nth-child(4) .step-item {
  width: 40%;
  padding-top: 10px;
}
.main .block17 .steps .step:nth-child(4) .step-item .top {
  display: none;
}
.main .block17 .steps .step:nth-child(4) .step-item .item {
  width: 100%;
  padding: 11px;
  border-radius: 15px;
  background: rgba(243, 94, 50, 0.1019607843);
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}
.main .block17 .steps .step:nth-child(4) .step-item .item img {
  margin-right: 15px;
}
.main .block17 .steps .step:nth-child(4) .step-item .item-text {
  font-size: 13px;
  line-height: 20px;
  color: #d6b5ab;
  margin: 15px 0 35px;
  padding-left: 55px;
}
.main .block17 .steps .step:nth-child(5) {
  display: flex;
  justify-content: end;
  z-index: 5;
}
.main .block17 .steps .step:nth-child(5) .step-info {
  width: 45%;
}
.main .block17 .steps .step:nth-child(5) .step-img {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
}
.main .block6_price {
  margin-top: 0;
}
.main .block6_price .title-text {
  margin-bottom: 50px;
  font-size: 44px;
  line-height: 57px;
}
.main .block6_price .block6-item .title-text {
  font-size: 35px;
  line-height: 45px;
}
.main .block6_price .block6-item:first-child {
  background-image: url(../img_main/png/block6_3.png);
}
.main .block6_price .block6-item:last-child {
  background-image: url(../img_main/png/block6_4.png);
  height: 815px;
}
.main .block18 {
  height: 683px;
  margin-top: -190px;
  background-image: url(../img_main/png/price-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding-bottom: 164px;
  display: flex;
  align-items: end;
}
.main .block18 .title-text {
  font-size: 44px;
  line-height: 57px;
  margin-bottom: 30px;
}
.main .block18 .new-order_btn {
  background: #f35e32;
  padding: 10px 10px 10px 25px;
  border-radius: 15px;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.main .block18 .new-order_btn span {
  display: inline-block;
  margin-right: 15px;
}
.main .block18 .new-order_btn:hover {
  opacity: 0.8;
}
.main .contact {
  padding: 200px 0 90px;
  overflow: hidden;
}
.main .contact .container {
  position: relative;
}
.main .contact .info {
  width: 300px;
  margin-top: 45px;
  padding-top: 35px;
  border-top: 1px solid #E7E7E7;
  display: none;
  align-items: start;
  justify-content: space-between;
  font-size: 14px;
  line-height: 28px;
  font-weight: 300;
  color: #403f3b;
}
.main .contact .info-name {
  opacity: 0.6;
}
.main .contact .info-text {
  opacity: 0.6;
}
.main .contact .title-text {
  font-size: 44px;
  line-height: 56px;
  margin-bottom: 40px;
}
.main .contact-info {
  display: block;
  padding-left: 70px;
  position: relative;
  z-index: 2;
}
.main .contact-info .info {
  display: flex;
}
.main .contact-info .info-text {
  opacity: 0.6;
}
.main .contact-item li {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  margin-bottom: 35px;
}
.main .contact-item li span {
  display: inline-block;
  width: 105px;
}
.main .contact-item li a {
  font-weight: 700;
}
.main .contact-item li a span {
  display: inline;
  color: #41B82E;
}
.main .contact-item li:nth-child(2) a span {
  color: #37acd5;
}
.main .contact .socials-title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  margin-right: 45px;
}
.main .contact .socials .social-text {
  font-size: 8px;
  line-height: 8px;
  font-weight: 300;
  margin-top: 11px;
  opacity: 0.6;
}
.main .contact .socials .social {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  margin-right: 15px;
}
.main .contact .socials .social:nth-child(1):hover svg path {
  animation: social1 0.3s linear infinite alternate;
}
.main .contact .socials .social:nth-child(2):hover svg path {
  animation: social2 0.3s linear infinite alternate;
}
.main .contact .socials .social:nth-child(3):hover svg path {
  animation: social3 0.3s linear infinite alternate;
}
@keyframes social1 {
  from {
    fill: #CBCBCB;
  }
  to {
    fill: #e25851;
  }
}
@keyframes social2 {
  from {
    fill: #CBCBCB;
  }
  to {
    fill: #0374ff;
  }
}
@keyframes social3 {
  from {
    fill: #CBCBCB;
  }
  to {
    fill: #ff232e;
  }
}
.main .contact-bg {
  width: 40%;
  position: absolute;
  top: -5%;
  right: 50%;
  transform: translateX(50%);
}
.main .contact-form {
  width: 370px;
  background: #fff;
  padding: 32px 40px 46px;
  box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  position: relative;
  z-index: 2;
}
.main .contact-form .title-text {
  font-size: 27px;
  line-height: 42px;
  font-weight: 500;
}
.main .contact-form .input-box {
  position: relative;
  margin-bottom: 30px;
}
.main .contact-form .input-box:nth-child(4) {
  margin-bottom: 25px;
}
.main .contact-form .input-box label {
  font-size: 10px;
  line-height: 15px;
  padding: 0 5px;
  background: #fff;
  position: absolute;
  top: -7px;
  left: 25px;
}
.main .contact-form .input-box input {
  width: 100%;
  height: 55px;
  border-radius: 15px;
  padding: 25px;
  border: 1px solid #E2E2E2;
  font-size: 15px;
  line-height: 15px;
  transition: 0.3s all;
}
.main .contact-form .input-box input::placeholder {
  color: #403f3b;
  opacity: 0.3;
}
.main .contact-form .input-box input:focus {
  border-color: #bdb3ad;
}
.main .contact-form .form-submit {
  width: 100%;
  height: 55px;
  border-radius: 16px;
  background: #f35e32;
  color: #fff;
  font-size: 15px;
  line-height: 17px;
  font-weight: 500;
  padding: 10px 10px 10px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main .contact-form .form-submit:hover {
  opacity: 0.8;
}
.main .block19 {
  padding: 205px 0 0;
}
.main .block19 .projects {
  font-size: 17px;
  line-height: 17px;
  font-weight: 500;
  color: #f35e32;
  display: none;
}
.main .block19 .projects::after {
  content: url(../img_main/svg/arrow-call.svg);
  margin-left: 5px;
}
.main .block19 .projects:hover {
  opacity: 0.8;
}
.main .block19-info {
  width: 55%;
  position: relative;
  z-index: 2;
}
.main .block19-info .projects {
  display: block;
}
.main .block19 .container {
  position: relative;
}
.main .block19 .title-suptext {
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  margin-bottom: 13px;
}
.main .block19 .title-text:nth-child(1) {
  font-size: 30px;
  line-height: 30px;
}
.main .block19 .title-text:nth-child(2) {
  font-size: 85px;
  line-height: 85px;
}
.main .block19 .title-text:nth-child(3) {
  font-size: 30px;
  line-height: 41px;
  margin-top: 15px;
}
.main .block19 .title-subtext {
  font-size: 15px;
  line-height: 28px;
  font-weight: 300;
  margin: 34px 0 39px;
}
.main .block19-img {
  position: absolute;
  bottom: -25%;
  right: 0;
  width: 57%;
  mix-blend-mode: darken;
}
.main .block20 {
  margin-top: 40px;
  position: relative;
  z-index: 3;
}
.main .block20-box {
  padding: 40px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0px 20px 80px 0px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
}
.main .block20-item .item-photo {
  height: 207px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.main .block20-item .item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main .block20-item .item-photo .zoom-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8.2px);
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.main .block20-item .item-photo .zoom-btn:hover svg path {
  opacity: 1;
}
.main .block20-item .item-title {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  margin: 19px 0 10px;
}
.main .block20-item .item-text {
  font-size: 14px;
  line-height: 25px;
  font-weight: 300;
}
.main .block20-sliders {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .block20-sliders .sliders-close {
  position: absolute;
  top: 1.5%;
  right: 40px;
  z-index: 9;
}
.main .block20-sliders .sliders {
  width: 970px;
  height: 80vh;
  position: relative;
}
.main .block20-sliders .sliders .swiper {
  height: 100%;
}
.main .block20-sliders .sliders .slide-img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}
.main .block20-sliders .swiper-btns .btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 5;
}
.main .block20-sliders .swiper-btns .btn:hover {
  opacity: 0.8;
}
.main .block20-sliders .swiper-btns .btn:first-child {
  left: -100px;
}
.main .block20-sliders .swiper-btns .btn:last-child {
  right: -100px;
}
.main .block20-sliders .pagination {
  position: absolute;
  bottom: -32px;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .block20-sliders .pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #E5E5E5;
  border-radius: 2px;
  opacity: 1;
  margin-right: 7px;
  transform: rotate(45deg);
}
.main .block20-sliders .pagination .swiper-pagination-bullet-active {
  width: 11px;
  height: 11px;
  background: #fff;
  border-radius: 4px;
}
.main .block21 {
  margin: 50px 0 78px;
}
.main .block21-box {
  width: 100%;
  height: 260px;
  border-radius: 40px;
  background-image: url(../img_main/png/block21.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
}
.main .block21-box .box-img {
  position: absolute;
  bottom: 0;
  left: 10%;
}
.main .block21-box .box-img_mob {
  display: none;
}
.main .block21-box .info {
  width: 50%;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  padding-right: 45px;
}
.main .block21-box .info-btn {
  padding: 10px 20px;
  border-radius: 28px;
  background: #fff;
  line-height: 18px;
  font-weight: 700;
  color: #f35e32;
  display: inline-block;
  margin-top: 25px;
}
.main .block22 .container {
  padding-bottom: 100px;
  position: relative;
  border-bottom: 1px solid #E3E3E3;
}
.main .block22-info {
  width: 55%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: start;
  flex-direction: column;
}
.main .block22-info .title-text {
  font-size: 35px;
  line-height: 50px;
}
.main .block22-info .info {
  padding: 10px 32px 10px 10px;
  background: #f35e32;
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  border-radius: 25px;
  display: flex;
  align-items: center;
  margin: 29px 0;
}
.main .block22-info .info img {
  margin-right: 15px;
}
.main .block22-info .info-text {
  font-size: 15px;
  line-height: 24px;
  margin-top: 15px;
}
.main .block22-info .info-sub {
  padding: 12px 20px;
  border-radius: 26px;
  font-size: 15px;
  line-height: 15px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}
.main .block22-img {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 47%;
  object-fit: contain;
  mix-blend-mode: darken;
}
.main .block23 {
  margin: 80px 0;
}
.main .block23 .left {
  width: 65%;
}
.main .block23 .left .title-text {
  font-size: 30px;
  line-height: 46px;
}
.main .block23 .left .title-subtext {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: #f35e32;
  margin: 24px 0 42px;
}
.main .block23 .left .block23-item {
  width: 48%;
  height: 287px;
}
.main .block23 .left .block23-item:first-child {
  color: #fff;
  background-image: url(../img_main/png/block23_1.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.main .block23 .left .block23-item:last-child {
  background: #ffede7;
  color: #403f3b;
}
.main .block23 .block23-item {
  width: 32%;
  border-radius: 30px;
  padding: 30px;
  background: #f35e32;
  color: #fff;
}
.main .block23 .block23-item .item-title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin: 10px 0;
}
.main .block23 .block23-item .item-text {
  font-size: 15px;
  line-height: 23px;
}
.main .block23 .block23-item .item-img {
  width: 100%;
  object-fit: contain;
  border-radius: 9px;
  margin-top: 30px;
}
.main .block24 {
  background-image: url(../img_main/png/block24.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 70px;
  padding: 72px 0 92px;
  color: #fff;
}
.main .block24 .title-text {
  font-size: 60px;
  line-height: 75px;
  color: #fff;
}
.main .block24 .info-text {
  width: 50%;
  font-size: 22px;
  line-height: 36px;
}
.main .block24-box {
  margin-top: 65px;
}
.main .block24-item {
  width: 32%;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  font-size: 17px;
  line-height: 28px;
  font-weight: 300;
}
.main .block24-item .item-text {
  margin-top: 10px;
}
.main .block25 .container {
  padding: 125px 20px 80px;
  position: relative;
}
.main .block25-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
}
.main .block25 .title-text {
  font-size: 40px;
  line-height: 54px;
  margin: 14px 0 20px;
  position: relative;
  z-index: 3;
}
.main .block25 .title-suptext {
  font-size: 15px;
  line-height: 20px;
}
.main .block25 .title-subtext {
  font-size: 22px;
  line-height: 22px;
  color: #f35e32;
}
.main .block25-item {
  background: #fff;
  border-radius: 40px;
  box-shadow: 0px 30px 70px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-top: 30px;
}
.main .block25-item .info {
  position: relative;
  z-index: 2;
  padding: 40px;
}
.main .block25-item .num {
  width: 45px;
  height: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffe6df;
  font-size: 13px;
  line-height: 13px;
  font-weight: 700;
  color: #f35e32;
}
.main .block25-item .item-title {
  font-size: 19px;
  line-height: 27px;
  font-weight: 700;
  margin: 12px 0 15px;
}
.main .block25-item .item-text {
  font-size: 15px;
  line-height: 24px;
}
.main .block25-item .item-text span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #f35e32;
}
.main .block25-item .item-img {
  position: absolute;
}
.main .block25-box {
  position: relative;
  z-index: 1;
}
.main .block25-box .left {
  width: 58%;
}
.main .block25-box .left .block25-item:nth-child(1) {
  width: 100%;
}
.main .block25-box .left .block25-item:nth-child(1) .info {
  width: 60%;
}
.main .block25-box .left .block25-item:nth-child(1) .item-img {
  bottom: 0;
  right: 0;
  width: 302px;
}
.main .block25-box .left .block25-item:nth-child(3), .main .block25-box .left .block25-item:nth-child(4) {
  overflow: hidden;
  width: 48%;
  height: 464px;
}
.main .block25-box .left .block25-item:nth-child(3) .item-img, .main .block25-box .left .block25-item:nth-child(4) .item-img {
  position: relative;
  width: 100%;
  margin-top: -30px;
}
.main .block25-box .left .block25-item:nth-child(3) .item-img {
  margin-top: -70px;
}
.main .block25-box .right {
  width: 40%;
}
.main .block25-box .right .block25-item {
  width: 100%;
  height: 63%;
  overflow: hidden;
}
.main .block25-box .right .block25-item .info {
  width: 80%;
}
.main .block25-box .right .block25-item .item-img {
  width: 100%;
  bottom: -5%;
  right: 0;
}
.main .block25-box .right .problems {
  width: 100%;
  height: 30%;
  padding: 40px;
  border-radius: 40px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.main .block25-box .right .problems .title {
  font-size: 16px;
  line-height: 27px;
  font-weight: 700;
  color: #898989;
  margin: 12px 0 5px;
}
.main .block25-box .right .problems .text {
  font-size: 14px;
  line-height: 22px;
  color: #a0a0a0;
}
.main .block26-box {
  background-image: url(../img_main/png/block26.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 50px;
  padding: 70px 70px 96px;
}
.main .block26 .title-text {
  font-size: 40px;
  line-height: 60px;
  width: 70%;
  color: #fff;
}
.main .block26 .info-box {
  margin-top: 24px;
}
.main .block26 .info-box p {
  font-size: 16px;
  line-height: 23px;
  font-weight: 700;
  color: #fff;
  margin-right: 35px;
}
.main .block26 .info-box .info {
  padding: 12px 16px;
  border-radius: 20px;
  background: #fff;
  font-size: 16px;
  line-height: 23px;
  width: 342px;
  position: relative;
}
.main .block26 .info-box .info::before {
  content: url(../img_main/png/try.png);
  position: absolute;
  bottom: 5px;
  right: 98%;
}
.main .block26-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-left: 70px;
}
.main .block26-items .item {
  margin-top: 60px;
}
.main .block26-items .item-text {
  font-size: 15px;
  line-height: 23px;
  font-weight: 300;
  margin-top: 14px;
}
.main .block26-items .item-text strong {
  font-weight: 500;
}
.main .block27 {
  margin: 80px 0 0;
}
.main .block27 .container {
  position: relative;
  padding: 70px 20px 123px;
  border-top: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB;
}
.main .block27-img {
  width: 50%;
  position: absolute;
  object-fit: contain;
  bottom: 0;
  right: 0;
  z-index: 1;
  mix-blend-mode: darken;
}
.main .block27 .info-box {
  width: 57%;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-left: 70px;
}
.main .block27 .title-text {
  font-size: 40px;
  line-height: 57px;
}
.main .block27 .info {
  padding: 20px 25px;
  margin: 39px 0 33px;
  border-radius: 30px;
  background: #fff;
  font-size: 22px;
  line-height: 20px;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.main .block27 .info span {
  font-weight: 500;
}
.main .block27 .title-subtext {
  font-size: 16px;
  line-height: 27px;
  width: 80%;
}
.main .block27 .info-text {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #f35e32;
  display: flex;
  align-items: center;
  margin-top: 24px;
}
.main .block27 .info-text::before {
  content: url(../img_main/svg/check-mini2.svg);
  margin-right: 7px;
  margin-top: 5px;
}
.main .block28 {
  padding: 70px 0 116px;
  background-image: url(../img_main/png/block28.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
.main .block28 .title-text {
  font-size: 40px;
  line-height: 56px;
}
.main .block28 .container {
  max-width: 1110px;
}
.main .block28-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 50px 0 43px;
}
.main .block28-items .item {
  width: 32%;
  background: #fff;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0px 18px 60px 0px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 23px;
  font-weight: 300;
}
.main .block28-items .item-title {
  font-size: 17px;
  line-height: 23px;
  font-weight: 500;
  margin: 8px 0 10px;
}
.main .block28 .subtitle {
  font-size: 25px;
  line-height: 25px;
}
.main .block28 .new-order {
  padding: 10px 10px 10px 25px;
  border-radius: 15px;
  background: #f35e32;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  margin-top: 30px;
}
.main .block28 .new-order:hover {
  opacity: 0.8;
}
.main .block28 .new-order span {
  display: inline-block;
  margin-right: 15px;
}
.main .block29 .container {
  position: relative;
  padding: 181px 20px 130px;
}
.main .block29-info {
  width: 50%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: start;
  flex-direction: column;
  padding-left: 70px;
}
.main .block29 .title-text {
  font-size: 44px;
  line-height: 52px;
}
.main .block29 .info-text {
  font-size: 15px;
  line-height: 28px;
  font-weight: 300;
  margin: 25px 0;
}
.main .block29 .info-text span {
  font-weight: 500;
}
.main .block29 .info {
  padding: 10px;
  background: #f35e32;
  border-radius: 25px;
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  display: flex;
  align-items: center;
}
.main .block29 .info img {
  margin-right: 15px;
}
.main .block29 .subtext {
  font-size: 15px;
  line-height: 28px;
  font-weight: 700;
  margin: 20px 0 60px;
}
.main .block29 .view-link {
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  color: #f35e32;
  display: flex;
  align-items: center;
}
.main .block29 .view-link::after {
  content: url(../img_main/svg/arrow-down.svg);
  margin-left: 8px;
}
.main .block29-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
}
.main .projects {
  margin: 30px 0 80px;
}
.main .projects-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  max-width: 980px;
  margin: 0 auto;
}
.main .projects .project {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}
.main .projects .project .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main .projects .project-img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: center;
}
.main .projects .project-info {
  padding: 35px;
  min-height: 190px;
}
.main .projects .project-name {
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
}
.main .projects .project .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main .projects .project .info-list li {
  display: flex;
  margin-top: 16px;
}
.main .projects .project .info-list li span {
  display: inline-block;
  font-size: 14px;
  line-height: 15px;
  color: #403f3b;
}
.main .projects .project .info-list li span:first-child {
  width: 145px;
  color: #a5a49f;
}
.main .projects .project .info-link {
  position: relative;
  display: flex;
  width: 163px;
  height: 50px;
  border-radius: 15px;
  background: rgba(243, 94, 50, 0.1);
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  padding: 17px 25px;
  margin-top: 16px;
}
.main .projects .project .info-link img {
  width: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
}
.main .projects .project .info-link:hover {
  background: rgba(243, 94, 50, 0.3);
}
.main .projects-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0;
  max-width: 980px;
}
.main .projects-pagination .prev,
.main .projects-pagination .next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 163px;
  height: 50px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1);
  padding: 10px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  cursor: pointer;
}
.main .projects-pagination .prev:hover,
.main .projects-pagination .next:hover {
  background: rgba(243, 94, 50, 0.01);
}
.main .projects-pagination .prev {
  padding-right: 18px;
}
.main .projects-pagination .next {
  padding-left: 18px;
}
.main .projects-pagination .pagination {
  display: flex;
  margin: 0 40px;
}
.main .projects-pagination .pagination li {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  color: #a2a2a2;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  margin-right: 20px;
  cursor: pointer;
}
.main .projects-pagination .pagination li:last-child {
  margin-right: 0;
}
.main .projects-pagination .pagination li:hover {
  background: rgba(243, 94, 50, 0.05);
}
.main .projects-pagination .pagination .active {
  background: #f35e32;
  color: #fff;
}
.main .projects-pagination .pagination .active:hover {
  background: #f35e32;
  color: #fff;
}
.main .reviews {
  padding-bottom: 50px;
}
.main .reviews .container {
  padding-top: 70px;
  border-top: 1px solid #F1F1F1;
  position: relative;
}
.main .reviews .container .reviews-img {
  position: absolute;
  top: 24px;
  left: 50%;
}
.main .reviews .title-text {
  font-size: 45px;
  line-height: 52px;
}
.main .reviews .info-text {
  margin-top: 27px;
  font-size: 15px;
  line-height: 27px;
}
.main .reviews .info-text span {
  color: #f35e32;
  font-weight: 500;
}
.main .reviews .pagination {
  position: absolute;
  bottom: 10px;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .reviews .pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #e5e5e5;
  opacity: 1;
  border-radius: 2px;
  margin-right: 7px;
  transform: rotate(45deg);
}
.main .reviews .pagination .swiper-pagination-bullet-active {
  width: 11px;
  height: 11px;
  background: #F35E32;
  border-radius: 4px;
}
.main .reviews .swiper-btns .btn {
  cursor: pointer;
}
.main .reviews .swiper-btns .btn:first-child {
  margin-right: 20px;
}
.main .reviews .swiper-btns .btn:hover {
  opacity: 0.8;
}
.main .reviews .swiper {
  position: relative;
  margin-top: 55px;
  padding-bottom: 50px;
}
.main .reviews .swiper-slide {
  opacity: 0.4;
  transition: 0.3s all;
}
.main .reviews .swiper-slide-next,
.main .reviews .swiper-slide-prev,
.main .reviews .swiper-slide-active {
  opacity: 1;
}
.main .reviews .review {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.main .reviews .review::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 70%);
}
.main .reviews .review-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main .reviews .review .play-btn {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: 0.3s all;
  z-index: 0;
}
.main .reviews .review-text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
  z-index: 5;
}
.main .reviews .review-text .info-text {
  font-size: 17px;
  line-height: 23px;
  font-weight: 700;
  color: #fff;
}
.main .reviews .review-text .user-name {
  font-size: 13px;
  line-height: 13px;
  color: rgba(255, 255, 255, 0.3333333333);
  margin-top: 10px;
}
.main .reviews .review:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.2);
}
.main .reviews .view-video .play-btn {
  display: none;
}
.main .reviews .view-video img.review-video {
  display: none;
}
.main .reviews .review.view-video::before {
	display: none;
}
.main .reviews .view-video .review-text {
  display: none;
}
.main .block30 {
  margin: 180px 0 40px;
}
.main .block30 .left {
  width: 40%;
}
.main .block30 .left .block30-img {
  display: none;
}
.main .block30 .backTo {
  font-size: 13px;
  line-height: 13px;
  font-weight: 500;
  color: #f35e32;
  display: flex;
  align-items: center;
}
.main .block30 .backTo::before {
  content: url(../img_main/svg/back.svg);
  margin-right: 8px;
}
.main .block30-title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  margin: 20px 0 25px;
}
.main .block30-item .item {
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  margin-right: 20px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  line-height: 15px;
}
.main .block30-item .item p {
  font-size: 13px;
  color: #a5a49f;
  margin: 14px 0 8px;
}
.main .block30-item .item:last-child {
  margin-right: 0;
}
.main .block30-info {
  margin-top: 20px;
}
.main .block30-info .info {
  max-width: 420px;
  padding: 20px;
  border-radius: 20px;
  background: #2d2d2b;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}
.main .block30-info .info::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background: #2d2d2b;
  position: absolute;
  transform: rotate(45deg);
  top: 92%;
  left: 35px;
}
.main .block30-info .designer {
  font-size: 13px;
  line-height: 15px;
  color: #a5a49f;
  padding-left: 20px;
  margin-top: 15px;
}
.main .block30-info .designer-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #EAEAEA;
  margin-right: 15px;
}
.main .block30-img {
  width: 58%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
}
.main .project-tabs .container {
  padding-bottom: 50px;
  border-bottom: 1px solid #F1F1F1;
}
.main .project-tabs .tab-btns .tab-active {
  display: none;
}
.main .project-tabs .tab-btns .btns {
  max-width: 1170px;
  padding: 0 0 20px 20px;
  border-radius: 20px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}
.main .project-tabs .tab-btns .btns .tab-btn {
  margin: 20px 40px 0 0;
}
.main .project-tabs .tab-btns .btns .tab-btn span {
  padding: 7px 10px;
  background: #f5f5f5;
  border-radius: 10px;
  font-size: 15px;
  line-height: 15px;
  color: #c1c0bd;
  cursor: pointer;
}
.main .project-tabs .tab-btns .btns .tab-btn input:checked ~ span {
  background: rgba(243, 94, 50, 0.1019607843);
  color: #f35e32;
}
.main .project-tabs .tab-box {
  margin-top: 30px;
}
.main .project-tabs .tab-box .tab-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.main .project-tabs .tab-box .tab-item .item-img {
  width: 100%;
  height: 370px;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
}
.main .block31 .container {
  max-width: 1070px;
  padding: 50px 20px 50px;
}
.main .block31-info {
  width: 48%;
  border-right: 1px solid #F1F1F1;
}
.main .block31-title {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
}
.main .block31 .info-text {
  font-size: 15px;
  line-height: 24px;
  margin: 20px 0 30px;
}
.main .block31 .info-text span {
  color: #f35e32;
  font-weight: 500;
}
.main .block31-form {
  width: 90%;
  display: flex;
  justify-content: space-between;
}
.main .block31-form .input-box {
  width: 52%;
}
.main .block31-form .input-box input {
  width: 100%;
  height: 50px;
  border-radius: 15px;
  padding: 25px;
  border: 1px solid #E2E2E2;
  font-size: 15px;
  line-height: 15px;
  transition: 0.3s all;
}
.main .block31-form .input-box input::placeholder {
  color: #403f3b;
  opacity: 0.3;
}
.main .block31-form .input-box input:focus {
  border-color: #bdb3ad;
}
.main .block31-form .form-submit {
  width: 46%;
  height: 50px;
  border-radius: 15px;
  background: #f35e32;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
}
.main .block31-form .form-submit:hover {
  opacity: 0.8;
}
.main .block31-link {
  width: 48%;
  height: 250px;
  border-radius: 20px;
  background-image: url(../img_main/png/next-pr.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.main .block31-link a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main .block31-link p {
  font-size: 15px;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.4666666667);
  margin-top: 20px;
}
.main .block31-link:hover svg path {
  opacity: 1;
}
.main .block31-link:hover p {
  color: #fff;
}

.footer {
  background: #fff;
  border-top: 1px solid #EDEDED;
  position: relative;
  z-index: 5;
}
.footer-box {
  margin: 60px 0;
}
.footer .item {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.footer .item-link {
  color: #000;
  border-bottom: 1px solid #000;
  display: flex;
  font-size: 12px;
  line-height: 13px;
  margin-top: 13px;
  opacity: 0.3;
  transition: 0.3s all;
}
/*.footer .item-link:last-child {
  margin-top: 13px;
}*/
.footer .item-link:hover {
  color: #f35e32;
  border-color: #f35e32;
  opacity: 0.8;
}
.footer .item li {
  margin-bottom: 20px;
}
.footer .item li a {
  font-size: 14px;
  line-height: 16px;
  color: #000;
  opacity: 0.7;
}
.footer .item li a:hover {
  color: #f35e32;
  opacity: 0.8;
}
.footer .item:nth-child(2) li:last-child {
  display: none;
}
.footer .item:nth-child(4) li:first-child {
  display: none;
}
.footer-link {
  margin-bottom: 20px;
}
.footer-link .phone {
  margin-right: 20px;
}
.footer-link .phone span {
  font-size: 9px;
  line-height: 10px;
  color: #ccc;
}
.footer-link .phone a {
  font-size: 15px;
  line-height: 17px;
  font-weight: 500;
  color: #353535;
}
.footer-link .phone a:hover {
  color: #f35e32;
}
.footer-link .social {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #F3F3F3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: 0.3s all;
}
.footer-link .social img {
  transition: 0.3s all;
}
.footer-link .social:last-child {
  margin-right: 0;
}
.footer-link .social:hover {
  border-color: #f35e32;
}
.footer-link .social:hover img {
  transform: scale(1.3);
}
.footer-btn {
  font-size: 13px;
  line-height: 14px;
  font-weight: 500;
}
.footer-btn button {
  height: 35px;
  border-radius: 50px;
  padding: 0 20px;
  font-weight: 500;
}
.footer-btn .sign-in {
  background: #fdf4f2;
  color: #887773;
  margin-right: 15px;
}
.footer-btn .sign-in:hover {
  background: #353535;
  color: #fff;
}
.footer-btn .register {
  background: #f35e32;
  color: #fff;
  box-shadow: 0px 4px 15px 0px rgba(243, 94, 50, 0.4);
}
.footer-btn .register:hover {
  box-shadow: none;
}
.footer-btn p {
  color: #d0d0d0;
  margin: 0 15px;
}
.footer-bottom {
  background: #fafafa;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom p {
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  line-height: 30px;
}
.footer-bottom p a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.footer-bottom p a:hover {
  color: #f35e32;
  border-color: #f35e32;
}

/*.popUp {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  overflow-y: scroll;
}
.popUp-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
}
.popUp-content {
  width: 470px;
  border-radius: 8px;
  background: #fff;
  padding: 45px;
  position: relative;
  animation: popUp-anim 0.3s linear;
  margin: 50px auto;
}*/
.popUp {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3019607843);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  color:#403F3B;
}
.popUp-content {
  width: 380px;
  border-radius: 40px;
  background: #fff;
  padding: 40px;
  position: relative;
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  animation: popUp-anim 0.3s linear;
}
.popUp-close {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
}
.popUp-close:hover svg path {
  stroke: #403F3B;
}

.popUp-thanks {
  display: flex;
  align-items: center;
  justify-content: center;
}
.popUp-thanks .popUp-content {
  width: 370px;
  height: 457px;
  border-radius: 30px;
}
.popUp-thanks .title-text {
  font-size: 19px;
  line-height: 28px;
  margin: 14px 0;
}
.popUp-thanks .title-subtext {
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
}

.popUpHide {
  animation: popUp-anim-hide 0.5s linear !important;
}

@keyframes popUp-anim {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes popUp-anim-hide {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
@keyframes menu-anim {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0;
  }
}
@keyframes heart-anim {
  from {
    transform: scale(1.5);
  }
  to {
    transform: scale(1);
  }
}
@media (max-width: 1250px) {
  .main .block4 .item {
    font-size: 13px;
    line-height: 20px;
  }
  .main .block20-sliders .sliders .swiper-btns .btn:first-child {
    left: 10px;
  }
  .main .block20-sliders .sliders .swiper-btns .btn:last-child {
    right: 10px;
  }
}
@media (max-width: 992px) {
  .title-text {
    font-size: 32px;
    line-height: 40px;
  }
  .title-info {
    font-size: 16px;
    line-height: 24px;
  }
  .header-nav {
    margin: 15px 0 20px;
  }
  .header-box {
    padding: 15px 15px 15px 20px;
  }
  .header-link {
    margin-right: 30px;
  }
  .header-link .phone {
    margin-right: 15px;
  }
  .header-link .social {
    margin-right: 10px;
  }
  .header-link .social:last-child {
    margin-right: 0;
  }
  .header-btn {
    font-size: 12px;
    line-height: 12px;
  }
  .header-btn button {
    padding: 0 10px;
  }
  .header-btn p {
    margin: 0 5px;
  }
  .main .block1 {
    height: 530px;
    padding-top: 150px;
  }
  .main .block1 .title-info {
    margin: 15px 0;
  }
  .main .block1-info {
    font-size: 15px;
    line-height: 20px;
  }
  .main .block1-info img {
    width: 19px;
    margin-right: 15px;
  }
  .main .block2-item {
    width: 32.5%;
    padding: 20px;
    border-radius: 25px;
  }
  .main .block2-item .item-title {
    font-size: 16px;
    line-height: 25px;
  }
  .main .block2-item .item-text {
    font-size: 13px;
    line-height: 25px;
    margin-top: 7px;
  }
  .main .block3 .chair {
    bottom: -50px;
  }
  .main .block3 .item {
    border-radius: 15px;
    padding: 20px 0 0 30px;
  }
  .main .block3 .item-suptitle {
    font-size: 16px;
    line-height: 20px;
  }
  .main .block3 .item-title {
    font-size: 55px;
    line-height: 55px;
    margin: 7px 0 13px;
  }
  .main .block3 .item-subtitle {
    font-size: 12px;
    line-height: 14px;
    padding: 3px 6px;
  }
  .main .block3 .item-box:first-child .item {
    height: 180px;
  }
  .main .block3 .item-box:last-child .item {
    height: 150px;
  }
  .main .block4 {
    border-radius: 40px 40px 0 0;
    padding: 35px 0 130px;
  }
  .main .block4-img {
    display: none;
  }
  .main .block4-img_mob {
    display: block;
    width: 100%;
    margin-top: 14px;
    object-fit: contain;
  }
  .main .block4 .dashed {
    width: 257px;
  }
  .main .block4 .title-text {
    font-size: 25px;
    line-height: 39px;
    margin: 20px 0 0;
  }
  .main .block4 .item {
    font-size: 12px;
    line-height: 19px;
    width: 100%;
    position: relative;
    top: 0 !important;
    left: 0 !important;
    margin-top: 30px;
    display: flex;
    align-items: start;
  }
  .main .block4 .item-icon {
    display: block;
    margin-right: 14px;
  }
  .main .block4 .item-title {
    font-size: 13px;
    line-height: 19px;
  }
  .main .block4 .item-text {
    margin-top: 5px;
  }
  .main .block4 .item-list {
    padding-left: 20px;
    margin-top: 5px;
  }
  .main .block4 .item-list li {
    list-style-type: disc;
  }
  .main .block4-info {
    background-image: url(../img_main/png/block4-mob.png);
    border-radius: 30px;
    background-position: bottom;
    width: 300px;
    height: 243px;
    padding: 20px;
    bottom: -30px;
  }
  .main .block4-info .info-item {
    width: 100%;
  }
  .main .block4-info .item-top {
    font-size: 13px;
    line-height: 22px;
    flex-direction: column;
    align-items: start;
  }
  .main .block4-info .item-top img {
    width: 41px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .main .block4-info .info-title {
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
    margin-top: 2px;
  }
  .main .block5 {
    height: 450px;
    background-position: top;
    padding-top: 80px;
  }
  .main .block5-title {
    font-size: 24px;
    line-height: 34px;
    width: 65%;
  }
  .main .block5-item img {
    margin-left: -50px;
    margin-top: -20px;
  }
  .main .block5-item img:nth-child(2), .main .block5-item img:nth-child(3) {
    margin-left: -70px;
  }
  .main .block6 {
    margin-top: -100px;
  }
  .main .block6-item {
    padding: 35px 30px;
    min-height: 570px;
    border-radius: 25px;
  }
  .main .block6-item .title-text {
    font-size: 20px;
    line-height: 28px;
  }
  .main .block6-item .item li {
    font-size: 13px;
    line-height: 20px;
    margin-top: 20px;
  }
  .main .block6-item .item li:first-child {
    margin-top: 20px;
  }
  .main .block6-item .item li img {
    width: 32px;
    margin-right: 15px;
  }
  .main .block6-item:first-child {
    padding-right: 80px;
  }
  .main .block6-item:last-child {
    top: 30px;
    right: 0;
  }
  .main .block7 {
    height: 500px;
  }
  .main .block7 .title-text {
    font-size: 30px;
    line-height: 40px;
    margin: 20px 0 27px;
  }
  .main .block7 .info-text {
    font-size: 16px;
    line-height: 16px;
  }
  .main .block8 {
    margin-top: -80px;
  }
  .main .block8-box {
    border-radius: 25px;
  }
  .main .block8-item {
    padding: 25px;
  }
  .main .block8-item .item-text {
    font-size: 16px;
    line-height: 27px;
    margin-top: 15px;
  }
  .main .block8-item:nth-child(1) {
    min-height: 300px;
  }
  .main .block8-item:nth-child(2) {
    min-height: 300px;
  }
  .main .block8-item:nth-child(3) {
    min-height: 270px;
  }
  .main .block8-item:nth-child(4) {
    min-height: 270px;
  }
  .main .block10 {
    margin-top: -30px;
  }
  .main .block10 .num {
    width: 58px;
    height: 29px;
    border-radius: 20px;
    font-size: 15px;
  }
  .main .block10 .subtitle {
    font-size: 20px;
    line-height: 32px;
  }
  .main .block10 .subtitle-text {
    font-size: 13px;
    line-height: 27px;
  }
  .main .block10-top {
    padding: 20px;
    border-radius: 40px 40px 0 40px;
    background-image: url(../img_main/png/block10.png);
  }
  .main .block10-top .top-title {
    font-size: 17px;
    line-height: 36px;
  }
  .main .block10-box {
    padding-bottom: 40px;
    border-end-end-radius: 40px;
  }
  .main .block10-box .one-img {
    position: absolute;
    right: 24px;
    top: 15%;
    width: 20%;
  }
  .main .block10-box .form-img {
    position: absolute;
    right: 7.5%;
    top: 15%;
    width: 38%;
  }
  .main .block10-box .info-box {
    width: 78%;
    padding: 80px 30px 40px;
  }
  .main .block10-box .info-box .title-text {
    font-size: 22px;
    line-height: 30px;
  }
  .main .block10-box .info-box .num {
    margin: 20px 0 15px;
  }
  .main .block10-box .info-box .subtitle-text {
    margin: 20px 0 15px;
  }
  .main .block10-box .info-box .info-list li {
    padding: 7.5px 15px;
    border-radius: 8px;
    background: #f5f5f5;
    font-size: 12px;
  }
  .main .block10 .item-box {
    border-radius: 20px;
    font-size: 13px;
    line-height: 22px;
  }
  .main .block10 .item-box img {
    width: 31px;
    margin-right: 10px;
  }
  .main .block10 .item2 .item2-img {
    width: 48%;
  }
  .main .block10 .item2 .item2-img::before {
    width: 25px;
    height: 25px;
    right: -5px;
  }
  .main .block10 .item2 .subtitle {
    margin: 10px 0 7px;
  }
  .main .block10 .item2-info {
    width: 48%;
  }
  .main .block10 .item2 .item-box {
    margin-top: 15px;
  }
  .main .block10 .item3 .lines {
    left: 97%;
    transform: rotate(180deg);
  }
  .main .block10 .item3-info {
    width: 43%;
    padding-left: 0;
  }
  .main .block10 .item3 .subtitle {
    margin: 10px 0 7px;
  }
  .main .block10 .item3 .item-box {
    margin-top: 15px;
  }
  .main .block10 .item3-img {
    width: 50%;
    object-fit: cover;
    mix-blend-mode: darken;
  }
  .main .block10 .item4-box {
    padding-bottom: 40px;
  }
  .main .block10 .item4-box .rubl {
    position: absolute;
    top: 40px;
    left: 20px;
    width: 15%;
  }
  .main .block10 .item4-box .payment {
    top: 120px;
    left: 0;
    width: 30%;
  }
  .main .block10 .item4-info {
    width: 75%;
    padding: 50px 0 30px 60px;
  }
  .main .block10 .item4 .subtitle {
    margin: 20px 0 15px;
  }
  .main .block10 .item4 .lock {
    padding: 11px 17px;
    font-size: 13px;
    line-height: 20px;
    margin: 20px 0;
  }
  .main .block10 .item4 .lock img {
    width: 14px;
    margin-right: 12px;
  }
  .main .block10 .item4-subtitle {
    font-size: 13px;
    line-height: 20px;
  }
  .main .block10 .item4-text {
    font-size: 13px;
    line-height: 20px;
    margin: 15px 0;
  }
  .main .block10 .item4 .item-box {
    box-shadow: none;
  }
  .main .block10 .item5 {
    margin: 0;
  }
  .main .block10 .item5-top {
    padding-top: 55px;
  }
  .main .block10 .item5-top .subtitle {
    margin: 20px 0 10px;
  }
  .main .block10 .item5-top .step-suptitle {
    font-size: 18px;
    line-height: 18px;
    margin: 70px 0 30px;
  }
  .main .block10 .item5 .step {
    width: 100%;
    padding: 20px;
    border-radius: 20px;
  }
  .main .block10 .item5 .step-subtitle {
    font-size: 16px;
    line-height: 22px;
    margin: 10px 0;
  }
  .main .block10 .item5 .step-text {
    font-size: 13px;
    line-height: 22px;
  }
  .main .block10 .item5 .step-info {
    width: 50%;
    position: relative;
    z-index: 2;
  }
  .main .block10 .item5 .step-img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    object-fit: cover;
  }
  .main .block10 .item6 .container {
    padding-bottom: 60px;
  }
  .main .block10 .item6-box {
    padding: 40px 30px;
    margin: 90px 0 40px;
  }
  .main .block10 .item6-box .item6-title {
    font-size: 22px;
    line-height: 35px;
  }
  .main .block10 .item6-box .item6-img {
    position: absolute;
    right: -10%;
    top: 60%;
    transform: translateY(-50%);
    height: 150%;
    z-index: 2;
  }
  .main .block10 .item6-info {
    padding: 25px;
    border-radius: 20px;
  }
  .main .block10 .item6-info .left {
    width: 53%;
  }
  .main .block10 .item6-info .left img {
    width: 40px;
    margin-right: 20px;
  }
  .main .block10 .item6-info .left-title {
    font-size: 18px;
    line-height: 28px;
  }
  .main .block10 .item6-info .right-text {
    font-size: 13px;
    line-height: 22px;
    width: 43%;
  }
  .main .block10 .item6 .create-new_order {
    border-radius: 15px;
    background: #f35e32;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    padding: 10px 10px 10px 25px;
    display: flex;
    align-items: center;
  }
  .main .block10 .item6 .create-new_order span {
    display: inline-block;
    margin-right: 15px;
  }
  .main .block10 .item6 .create-new_order:hover {
    opacity: 0.8;
  }
  .main .block11 .container {
    padding: 40px 20px;
  }
  .main .block11-item {
    border-radius: 20px;
    padding: 20px;
  }
  .main .block11-item .title-text {
    font-size: 20px;
    line-height: 20px;
  }
  .main .block11-item .item-title {
    font-size: 16px;
    line-height: 22px;
  }
  .main .block11-item .item-text {
    font-size: 13px;
    line-height: 24px;
    margin-top: 10px;
  }
  .main .block11 .block11-top .block11-item {
    width: 48%;
  }
  .main .block11 .block11-top .block11-item .item-text {
    width: 100%;
  }
  .main .block11-info {
    width: 48%;
  }
  .main .block11-info .title-text {
    font-size: 22px;
    line-height: 35px;
  }
  .main .block11-info .info {
    padding: 4px 18px;
    font-size: 14px;
  }
  .main .block12 {
    margin: 40px 0 60px;
  }
  .main .block12 .title-text {
    font-size: 22px;
    line-height: 34px;
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
  }
  .main .block12 .title-text::before {
    content: url(../img_main/svg/arrow-up2.svg);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
  }
  .main .block12-box {
    width: 100%;
  }
  .main .block13 .container {
    padding: 0;
  }
  .main .block13-box {
    padding: 45px 30px;
    border-radius: 30px;
  }
  .main .block13-box .box-img {
    width: 55%;
    position: absolute;
    top: -70px;
    right: -1%;
    mix-blend-mode: darken;
  }
  .main .block13 .title-text {
    font-size: 35px;
    line-height: 50px;
  }
  .main .block13 .title-text span {
    border-radius: 15px;
    padding: 0 15px;
  }
  .main .block13 .info-text {
    font-size: 16px;
    line-height: 24px;
  }
  .main .block13 .faqs {
    margin-top: 20px;
  }
  .main .block13 .faqs .faq {
    margin-bottom: 10px;
    border-radius: 20px;
  }
  .main .block13 .faqs .faq-head {
    padding: 15px;
    position: relative;
  }
  .main .block13 .faqs .faq-head .head-num {
    display: none;
  }
  .main .block13 .faqs .faq-head .head-title {
    font-size: 18px;
    line-height: 26px;
  }
  .main .block13 .faqs .faq-head .arrow {
    right: 15px;
    width: 35px;
    height: 35px;
  }
  .main .block13 .faqs .faq-head .arrow img {
    width: 12px;
  }
  .main .block13 .faqs .faq-body {
    padding: 0 15px;
  }
  .main .block13 .faqs .faq-body .body-text {
    width: 100%;
  }
  .main .block13 .faqs .faq-body .body-text p {
    font-size: 13px;
    line-height: 24px;
  }
  .main .block13 .faqs .faq-body .body-img {
    display: none;
  }
  .main .block13 .faqs .showFaq {
    max-height: 2000px;
  }
  .main .block13 .faqs .showFaq .faq-head {
    border-bottom: 1px solid rgba(0, 0, 0, 0.0666666667);
  }
  .main .block13 .faqs .showFaq .faq-head .arrow img {
    transform: rotate(180deg);
  }
  .main .block13 .faqs .showFaq .faq-body {
    padding: 15px;
  }
  .main .block13 .box-text {
    font-size: 20px;
    line-height: 30px;
    margin-top: 60px;
  }
  .main .block13 .box-text span {
    line-height: 20px;
    border-radius: 10px;
    padding: 0 10px 5px;
  }
  .main .block13 .box-text::before {
    top: -25px;
  }
  .main .block14 {
    margin-top: -20px;
    overflow: hidden;
  }
  .main .block14-info {
    width: 50%;
    padding-left: 0;
    position: relative;
    background: #fff;
    z-index: 1;
  }
  .main .block14 .container {
    padding: 70px 20px;
    position: relative;
  }
  .main .block14 .container .line {
    display: none;
  }
  .main .block14 .suptitle {
    font-size: 14px;
    line-height: 25px;
  }
  .main .block14 .title-text {
    font-size: 20px;
    line-height: 32px;
    margin: 9px 0 25px;
  }
  .main .block14 .regis-btn::before {
    display: none;
  }
  .main .faq_page {
    margin-top: 200px;
  }
  .main .faq_page .block13-box {
    background: #fff;
    border-radius: 0;
    padding: 0 20px;
    overflow: visible;
  }
  .main .faq_page .title-text {
    color: #222;
    font-size: 44px;
    line-height: 56px;
  }
  .main .faq_page .info-text {
    font-size: 17px;
    line-height: 29px;
    font-weight: 300;
    margin: 40px 0 100px;
    color: #1f1f1f;
  }
  .main .faq_page .call {
    font-size: 17px;
    line-height: 17px;
    font-weight: 500;
    color: #f35e32;
  }
  .main .faq_page .call::after {
    content: url(../img_main/svg/arrow-call.svg);
    margin-left: 5px;
  }
  .main .faq_page .call:hover {
    opacity: 0.8;
  }
  .main .faq_page .box-img {
    right: 0;
    top: -130px;
  }
  .main .faq_page .faqs {
    margin-top: 76px;
  }
  .main .faq_page .faqs .faq {
    box-shadow: 0px 15px 65px 0px rgba(0, 0, 0, 0.1);
  }
  .main .block15 {
    overflow: hidden;
  }
  .main .block15-img {
    right: -25%;
  }
  .main .block16 {
    padding-bottom: 0;
  }
  .main .block16-item {
    width: 100% !important;
  }
  .main .block16-item .item-price {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 20px;
  }
  .main .block16-item:nth-child(5) {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .main .block16-item:nth-child(5) .item-info {
    width: 50%;
  }
  .main .block17 {
    padding: 50px 0;
  }
  .main .block17-top .title-text {
    font-size: 21px;
    line-height: 32px;
    margin-right: 0;
    display: inline-block;
  }
  .main .block17-top .top-title {
    position: relative;
    display: inline-block;
    margin: 0 auto;
  }
  .main .block17-top .top-info {
    padding: 7px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 14px;
    position: absolute;
    bottom: 0;
    left: 60%;
    white-space: nowrap;
  }
  .main .block17-top .top-info::before {
    left: -4px;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: #f35e32;
  }
  .main .block17-top .info-text {
    font-size: 13px;
    line-height: 21px;
    margin: 25px 0;
  }
  .main .block17-top .top-item {
    width: 100%;
    padding: 30px;
    margin-bottom: 20px;
  }
  .main .block17-top .top-item:last-child {
    margin-bottom: 0;
  }
  .main .block17-top .top-item p {
    font-size: 13px;
    line-height: 21px;
    margin-top: 6px;
  }
  .main .block17 .steps {
    margin-top: 50px;
  }
  .main .block17 .steps-title {
    font-size: 27px;
    line-height: 36px;
  }
  .main .block17 .steps .step {
    margin-top: 20px;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  .main .block17 .steps .step-text {
    font-size: 13px;
    line-height: 24px;
    margin-top: 10px;
  }
  .main .block17 .steps .step:nth-child(1) {
    margin-top: 30px;
    padding-right: 30px;
    background-position: center;
  }
  .main .block17 .steps .step:nth-child(1) .step-info {
    width: 60%;
  }
  .main .block17 .steps .step:nth-child(2) {
    background-position: center;
  }
  .main .block17 .steps .step:nth-child(2) .step-info {
    width: 60%;
  }
  .main .block17 .steps .step:nth-child(3) .step-info {
    width: 60%;
  }
  .main .block17 .steps .step:nth-child(3) .step-img {
    left: 0;
    top: 0;
  }
  .main .block17 .steps .step:nth-child(4) .arrow {
    display: none;
  }
  .main .block17 .steps .step:nth-child(4) .step-info {
    width: 49%;
  }
  .main .block17 .steps .step:nth-child(4) .step-item {
    width: 49%;
    padding-top: 0;
  }
  .main .block17 .steps .step:nth-child(4) .step-item .item {
    font-size: 14px;
  }
  .main .block17 .steps .step:nth-child(4) .step-item .item img {
    width: 30px;
  }
  .main .block17 .steps .step:nth-child(4) .step-item .item-text {
    font-size: 13px;
    margin: 10px 0 20px;
  }
  .main .block17 .steps .step:nth-child(5) {
    justify-content: start;
    overflow: hidden;
    padding-bottom: 180px;
  }
  .main .block17 .steps .step:nth-child(5) .step-info {
    width: 80%;
  }
  .main .block17 .steps .step:nth-child(5) .step-img {
    position: absolute;
    left: 10%;
    bottom: -12%;
    height: 303px;
  }
  .main .block6_price {
    margin-top: 0;
  }
  .main .block6_price .title-text {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 44px;
  }
  .main .block6_price .block6-item .title-text {
    font-size: 20px;
    line-height: 28px;
  }
  .main .block6_price .block6-item:first-child {
    background-image: url(../img_main/png/block6_3.png);
  }
  .main .block6_price .block6-item:last-child {
    background-image: url(../img_main/png/block6_4.png);
    height: 567px;
  }
  .main .contact .title-text {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 22px;
  }
  .main .contact-info {
    padding-left: 0;
  }
  .main .contact-info .info {
    width: 270px;
    margin-top: 20px;
    font-size: 13px;
    line-height: 20px;
  }
  .main .contact-item li {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .main .contact-item li span {
    width: 85px;
  }
  .main .contact .socials-title {
    font-size: 13px;
    margin-right: 25px;
  }
  .main .contact .socials .social-text {
    font-size: 7px;
  }
  .main .contact-bg {
    width: 40%;
    position: absolute;
    top: -5%;
    transform: translateX(-50%);
  }
  .main .contact-form {
    width: 340px;
    padding: 30px;
  }
  .main .contact-form .title-text {
    font-size: 20px;
    line-height: 20px;
  }
  .main .block19 {
    padding: 150px 0 0;
  }
  .main .block19 .title-suptext {
    font-size: 13px;
  }
  .main .block19 .title-text:nth-child(1) {
    font-size: 18px;
    line-height: 18px;
  }
  .main .block19 .title-text:nth-child(2) {
    font-size: 49px;
    line-height: 49px;
  }
  .main .block19 .title-text:nth-child(3) {
    font-size: 18px;
    line-height: 26px;
    margin-top: 15px;
  }
  .main .block19 .title-subtext {
    font-size: 13px;
    line-height: 25px;
    margin: 16px 0;
  }
  .main .block19 .projects {
    font-size: 13px;
    line-height: 20px;
  }
  .main .block19-img {
    position: absolute;
    bottom: -25%;
    right: 0;
    width: 57%;
    mix-blend-mode: darken;
  }
  .main .block20-sliders .sliders {
    width: 97%;
  }
  .main .block20-sliders .sliders .swiper-btns .btn img {
    width: 35px;
  }
  .main .block21 {
    margin: 50px 0 78px;
  }
  .main .block21-box .box-img {
    left: 0;
  }
  .main .block22 .container {
    padding-bottom: 100px;
    position: relative;
    border-bottom: 1px solid #E3E3E3;
  }
  .main .block22-info {
    width: 55%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: start;
    flex-direction: column;
  }
  .main .block22-info .title-text {
    font-size: 18px;
    line-height: 30px;
  }
  .main .block22-info .info {
    padding: 5px 15px 5px 5px;
    font-size: 15px;
    line-height: 15px;
    margin: 20px 0;
  }
  .main .block22-info .info img {
    width: 30px;
    margin-right: 10px;
  }
  .main .block22-info .info-text {
    font-size: 13px;
    margin-top: 10px;
  }
  .main .block22-info .info-sub {
    padding: 10px 15px;
    font-size: 13px;
    line-height: 13px;
    margin-top: 20px;
  }
  .main .block22-img {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 47%;
    object-fit: contain;
    mix-blend-mode: darken;
  }
  .main .block23 {
    margin: 40px 0;
  }
  .main .block23 .left {
    width: 60%;
  }
  .main .block23 .left .title-text {
    font-size: 16px;
    line-height: 27px;
  }
  .main .block23 .left .title-subtext {
    font-size: 13px;
    line-height: 20px;
    margin: 15px 0 50px;
  }
  .main .block23 .left .block23-item {
    width: 49%;
    height: 287px;
  }
  .main .block23 .block23-item {
    width: 39%;
  }
  .main .block23 .block23-item .item-title {
    font-size: 16px;
  }
  .main .block23 .block23-item .item-text {
    font-size: 13px;
    line-height: 22px;
  }
  .main .block23 .block23-item .item-img {
    margin-top: 20px;
  }
  .main .block24 {
    border-radius: 30px;
    padding: 30px 0;
  }
  .main .block24 .title-text {
    font-size: 37px;
    line-height: 44px;
  }
  .main .block24 .info-text {
    width: auto;
    display: inline-block;
    font-size: 13px;
    line-height: 24px;
  }
  .main .block24-box {
    margin-top: 30px;
  }
  .main .block24-item {
    width: 32%;
    padding: 20px;
    border-radius: 20px;
    font-size: 13px;
    line-height: 21px;
  }
  .main .block25 .container {
    padding: 125px 20px 80px;
    position: relative;
  }
  .main .block25-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
  }
  .main .block25 .title-text {
    font-size: 23px;
    line-height: 33px;
    margin: 8px 0 15px;
  }
  .main .block25 .title-suptext {
    font-size: 13px;
  }
  .main .block25 .title-subtext {
    font-size: 14px;
  }
  .main .block25-item {
    border-radius: 20px;
    margin-top: 20px;
  }
  .main .block25-item .info {
    padding: 20px;
  }
  .main .block25-item .num {
    width: 30px;
    height: 20px;
    font-size: 11px;
  }
  .main .block25-item .item-title {
    font-size: 16px;
    line-height: 24px;
    margin: 10px 0;
  }
  .main .block25-item .item-text {
    font-size: 13px;
    line-height: 21px;
  }
  .main .block25-item .item-text span {
    font-size: 13px;
  }
  .main .block25-box {
    position: relative;
    z-index: 1;
  }
  .main .block25-box .left {
    width: 65%;
  }
  .main .block25-box .left .block25-item:nth-child(1) {
    width: 100%;
  }
  .main .block25-box .left .block25-item:nth-child(1) .info {
    width: 60%;
  }
  .main .block25-box .left .block25-item:nth-child(1) .item-img {
    width: 40%;
  }
  .main .block25-box .left .block25-item:nth-child(3), .main .block25-box .left .block25-item:nth-child(4) {
    overflow: hidden;
    width: 48%;
    height: 400px;
  }
  .main .block25-box .left .block25-item:nth-child(3) .item-img, .main .block25-box .left .block25-item:nth-child(4) .item-img {
    margin-top: -10px;
  }
  .main .block25-box .left .block25-item:nth-child(3) .item-img {
    margin-top: -30px;
  }
  .main .block25-box .right {
    width: 33%;
  }
  .main .block25-box .right .block25-item {
    height: 57%;
  }
  .main .block25-box .right .block25-item .info {
    width: 100%;
  }
  .main .block25-box .right .block25-item .item-img {
    width: 100%;
    bottom: -5%;
    right: 0;
  }
  .main .block25-box .right .problems {
    height: 37%;
    padding: 20px;
  }
  .main .block25-box .right .problems .title {
    line-height: 22px;
  }
  .main .block25-box .right .problems .text {
    font-size: 13px;
  }
  .main .block26-box {
    padding: 30px;
  }
  .main .block26 .title-text {
    font-size: 21px;
    line-height: 42px;
  }
  .main .block26-items {
    padding-left: 0;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
  }
  .main .block26-items .item {
    margin-top: 40px;
  }
  .main .block26-items .item-text br {
    display: none;
  }
  .main .block27 {
    margin: 60px 0 0;
  }
  .main .block27 .container {
    position: relative;
    padding: 50px 20px 30px;
  }
  .main .block27-img {
    position: relative;
    width: 100%;
    margin-top: 20px;
  }
  .main .block27 .info-box {
    width: 100%;
    padding-left: 0;
  }
  .main .block27 .title-text {
    font-size: 20px;
    line-height: 34px;
  }
  .main .block27 .info {
    padding: 13px 20px;
    margin: 20px 0;
    border-radius: 20px;
    font-size: 13px;
    line-height: 20px;
    white-space: wrap;
  }
  .main .block27 .title-subtext {
    font-size: 13px;
    line-height: 25px;
    width: 100%;
  }
  .main .block27 .info-text {
    font-size: 13px;
    line-height: 20px;
    margin-top: 15px;
  }
  .main .block29 {
    overflow: hidden;
  }
  .main .block29 .container {
    position: relative;
    padding: 150px 20px 30px;
  }
  .main .block29-info {
    width: 60%;
    padding-left: 0;
  }
  .main .block29 .title-text {
    font-size: 28px;
    line-height: 35px;
  }
  .main .block29 .info-text {
    font-size: 13px;
    line-height: 25px;
    margin: 15px 0 25px;
  }
  .main .block29 .info {
    padding: 10px;
    font-size: 12px;
  }
  .main .block29 .info img {
    margin-right: 15px;
  }
  .main .block29 .subtext {
    font-size: 13px;
    line-height: 20px;
    margin: 20px 0 17px;
  }
  .main .block29 .view-link {
    font-size: 13px;
    line-height: 13px;
  }
  .main .block29-img {
    width: 50%;
    right: -5%;
  }
  .main .projects .project .info {
    flex-direction: column;
    align-items: start;
  }
  .main .projects .project .info-link {
    width: 100%;
    margin-top: 20px;
  }
  .main .block30 .left {
    width: 55%;
  }
  .main .block30-img {
    width: 43%;
  }
  .main .project-tabs .tab-btns .btns {
    padding: 0 0 15px 15px;
    border-radius: 15px;
  }
  .main .project-tabs .tab-btns .btns .tab-btn {
    margin: 15px 15px 0 0;
  }
  .main .project-tabs .tab-box .tab-item {
    grid-gap: 10px;
  }
  .main .project-tabs .tab-box .tab-item .item-img {
    height: 276px;
    border-radius: 20px;
  }
  .headerSticy {
    top: -48px;
  }
  .footer-box {
    margin: 40px 0;
  }
  .footer .item:nth-child(2) li:last-child {
    display: block;
  }
  .footer .item:nth-child(3) {
    display: none;
  }
  .footer .item:nth-child(4) li:first-child {
    display: block;
  }
  .footer-link {
    flex-direction: column;
    align-items: start;
  }
  .footer-link .socials {
    margin-top: 14px;
  }
  .footer-btn {
    flex-direction: column;
    align-items: start;
  }
  .footer-btn button {
    width: 165px;
  }
  .footer-btn .sign-in {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .header .logo img {
    width: 173px;
  }
  .header-nav {
    display: none;
  }
  .header-box {
    padding: 10px 10px 10px 18px;
    margin-top: 20px;
  }
  .header-link {
    display: none;
  }
  .header-btn {
    display: none;
  }
  .header .btns {
    display: flex;
  }
  .headerSticy {
    top: -15px;
  }
  .main {
    overflow: hidden;
  }
  .main .block1 {
    height: 470px;
    padding-top: 115px;
  }
  .main .block2-item {
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  }
  .main .block2-item:last-child {
    margin-bottom: 0;
  }
  .main .block3 {
    margin-top: 30px;
  }
  .main .block3 .container {
    padding-bottom: 50px;
  }
  .main .block3 .chair {
    width: 214px;
    right: 0;
    bottom: -30px;
  }
  .main .block3 .item {
    border-radius: 15px;
    padding: 16px 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
  }
  .main .block3 .item-suptitle {
    font-size: 12px;
    line-height: 12px;
  }
  .main .block3 .item-title {
    font-size: 25px;
    line-height: 25px;
  }
  .main .block3 .item-subtitle {
    font-size: 10px;
    line-height: 12px;
  }
  .main .block3 .item-box:first-child .items {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .main .block3 .item-box:first-child .items .item {
    background-image: url("../img_main/png/block3-mob.png");
    background-position: center;
    height: 79px;
  }
  .main .block3 .item-box:first-child .items .item:last-child {
    display: flex;
    height: 100px;
    background: #EEEEEE;
  }
  .main .block3 .item-box:first-child .items .item:last-child .item-suptitle {
    color: #222222;
  }
  .main .block3 .item-box:first-child .items .item:last-child .item-title {
    color: #3C3C3C;
  }
  .main .block3 .item-box:first-child .item {
    height: 280px;
    color: #fff;
  }
  .main .block3 .item-box:first-child .item:last-child {
    width: 48%;
    height: 199px;
  }
  .main .block3 .item-box:last-child {
    width: 100%;
    margin-top: 20px;
  }
  .main .block3 .item-box:last-child .item {
    height: 80px;
    width: 100%;
    justify-content: start;
    align-items: start;
    padding-left: 27px;
  }
  .main .block3 .item-box:last-child .item:first-child {
    display: none;
  }
  .main .block10 .item3 {
    overflow: hidden;
    padding: 30px 0 20px;
  }
  .main .block10 .item3 .container {
    flex-direction: column;
  }
  .main .block10 .item3 .lines {
    left: 92%;
    transform: rotate(180deg);
  }
  .main .block10 .item3-info {
    width: 100%;
    padding-left: 0;
    margin-bottom: 17px;
    position: relative;
    z-index: 3;
  }
  .main .block10 .item3 .subtitle {
    margin: 10px 0 7px;
  }
  .main .block10 .item3 .item-box {
    margin-top: 15px;
  }
  .main .block10 .item3-img {
    width: 75%;
  }
  .main .block11 .block11-top {
    flex-direction: column;
  }
  .main .block11 .block11-top .block11-item {
    width: 100%;
    margin-top: 30px;
  }
  .main .block11-item {
    padding-bottom: 150px;
  }
  .main .block11-info {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .main .block11 .block11-box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
  }
  .main .block11 .block11-box .block11-item {
    margin-top: 0;
  }
  .main .block12-box {
    height: auto;
    border-radius: 20px;
    flex-direction: column;
  }
  .main .block12-box .item {
    flex-direction: row;
    font-size: 15px;
    line-height: 20px;
    width: 100%;
    height: 70px;
    border-right: none;
    border-bottom: 1px solid #F1F1F1;
  }
  .main .block12-box .item img {
    margin-bottom: 0;
    margin-right: 11px;
  }
  .main .block12-box .item:first-child {
    width: 100%;
  }
  .main .block12-box .item:last-child {
    border: none;
  }
  .main .contact {
    padding: 100px 0 35px;
  }
  .main .contact .container {
    padding: 0;
    flex-direction: column;
    position: relative;
  }
  .main .contact .info {
    display: flex;
    padding-left: 20px;
    border: none;
    margin-top: 40px;
    padding-top: 0;
  }
  .main .contact-info {
    padding-left: 0;
    padding: 0 20px;
  }
  .main .contact-info .info {
    display: none;
  }
  .main .contact-item li {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .main .contact-item li span {
    width: 85px;
  }
  .main .contact .socials-title {
    font-size: 13px;
    margin-right: 25px;
  }
  .main .contact .socials .social-text {
    font-size: 7px;
  }
  .main .contact-bg {
    top: 0;
    right: 0;
    transform: none;
  }
  .main .contact-form {
    width: 100%;
    margin-top: 45px;
  }
  .main .block19 {
    padding: 113px 0 0;
  }
  .main .block19 .title-suptext {
    width: 220px;
  }
  .main .block19 .title-subtext br {
    display: none;
  }
  .main .block19-img {
    right: -10%;
  }
  .main .block20-box {
    padding: 30px;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 40px;
  }
  .main .block20-sliders .sliders-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 9;
  }
  .main .block20-sliders .sliders {
    height: 40vh;
  }
  .main .block21-box {
    height: 220px;
  }
  .main .block21-box .box-img {
    height: 250px;
  }
  .main .block21-box .info {
    width: 50%;
    font-size: 14px;
    line-height: 25px;
    padding-right: 20px;
  }
  .main .block21-box .info-btn {
    padding: 8px 14px;
    font-size: 15px;
    margin-top: 15px;
  }
  .main .block22 .container {
    padding: 40px 20px 0;
  }
  .main .block22-info {
    width: 100%;
  }
  .main .block22-img {
    position: relative;
    bottom: 0;
    width: 100%;
  }
  .main .block23 .left {
    width: 100%;
  }
  .main .block23 .left .block23-item {
    width: 100%;
    height: 277px;
  }
  .main .block23 .left .block23-item:first-child {
    margin-top: 0;
  }
  .main .block23 .block23-item {
    width: 100%;
    margin-top: -50px;
  }
  .main .block25 .container {
    padding: 50px 20px 70px;
    position: relative;
  }
  .main .block25-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
  }
  .main .block25-box {
    position: relative;
    z-index: 1;
  }
  .main .block25-box .left {
    width: 100%;
  }
  .main .block25-box .left .block25-item:nth-child(1) {
    width: 100%;
  }
  .main .block25-box .left .block25-item:nth-child(1) .info {
    width: 60%;
  }
  .main .block25-box .left .block25-item:nth-child(1) .item-img {
    width: 40%;
  }
  .main .block25-box .left .block25-item:nth-child(2) {
    display: block !important;
    width: 100%;
  }
  .main .block25-box .left .block25-item:nth-child(2) .item-img {
    position: relative;
    width: 100%;
    margin-top: 20px;
  }
  .main .block25-box .left .block25-item:nth-child(3), .main .block25-box .left .block25-item:nth-child(4) {
    overflow: hidden;
    width: 48%;
    height: 400px;
  }
  .main .block25-box .left .block25-item:nth-child(3) .item-img, .main .block25-box .left .block25-item:nth-child(4) .item-img {
    margin-top: -10px;
  }
  .main .block25-box .left .block25-item:nth-child(3) .item-img {
    margin-top: -30px;
  }
  .main .block25-box .right {
    width: 100%;
  }
  .main .block25-box .right .block25-item {
    display: none;
  }
  .main .block25-box .right .problems {
    height: 210px;
    padding: 20px;
    margin-top: 50px;
  }
  .main .block28 {
    padding: 40px 0 132px;
    background-size: contain;
    background-position: bottom;
  }
  .main .block28 .title-text {
    font-size: 21px;
    line-height: 30px;
  }
  .main .block28 .title-text br {
    display: none;
  }
  .main .block28-items {
    margin: 0;
  }
  .main .block28-items .item {
    width: 100%;
    border-radius: 20px;
    padding: 25px;
    font-size: 13px;
    line-height: 21px;
    margin-top: 20px;
  }
  .main .block28-items .item-title {
    font-size: 16px;
  }
  .main .block28 .subtitle {
    font-size: 18px;
    line-height: 20px;
    margin: 50px 0 25px;
  }
  .main .block28 .new-order {
    margin: 0;
  }
  .main .block29 .container {
    padding-top: 100px;
  }
  .main .projects {
    margin: 30px 0 50px;
  }
  .main .projects-box {
    grid-template-columns: repeat(1, 1fr);
  }
  .main .projects .project-img {
    height: 300px;
  }
  .main .projects .project-info {
    padding: 20px;
    min-height: auto;
  }
  .main .projects .project-name {
    font-size: 16px;
    line-height: 20px;
  }
  .main .projects .project .info-list li {
    margin-top: 11px;
  }
  .main .projects .project .info-list li span {
    font-size: 12px;
  }
  .main .projects .project .info-list li span:first-child {
    width: 160px;
  }
  .main .projects-pagination {
    margin-top: 30px;
    padding-top: 90px;
    position: relative;
  }
  .main .projects-pagination .prev,
  .main .projects-pagination .next {
    width: 133px;
    height: 40px;
    border-radius: 15px;
    padding: 7px;
    font-size: 11px;
    line-height: 11px;
    position: absolute;
    top: 30px;
  }
  .main .projects-pagination .prev {
    padding-right: 14px;
    left: 20px;
  }
  .main .projects-pagination .next {
    padding-left: 14px;
    right: 20px;
  }
  .main .projects-pagination .pagination {
    margin: 0;
  }
  .main .projects-pagination .pagination li {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 11px;
    line-height: 11px;
  }
  .main .block30 {
    margin: 100px 0 30px;
  }
  .main .block30 .block30-img {
    display: none;
  }
  .main .block30 .left {
    width: 100%;
  }
  .main .block30 .left .block30-img {
    display: block;
    height: auto;
    width: 100%;
    object-fit: contain;
    border-radius: 20px;
  }
  .main .block30 .backTo {
    font-size: 11px;
  }
  .main .block30-title {
    font-size: 22px;
    line-height: 31px;
    font-weight: 700;
    margin: 15px 0 20px;
  }
  .main .block30-item {
    margin-top: 20px;
  }
  .main .block30-item .item {
    padding: 15px;
    border-radius: 15px;
    font-size: 13px;
  }
  .main .block30-item .item p {
    font-size: 10px;
    margin: 9px 0 3px;
  }
  .main .block30-info .info {
    padding: 15px;
    border-radius: 15px;
    font-size: 13px;
  }
  .main .block30-info .designer {
    font-size: 12px;
    padding-left: 25px;
    margin-top: 20px;
  }
  .main .block30-info .designer-img {
    width: 40px;
    height: 40px;
  }
  .main .block31 .container {
    max-width: 1070px;
    padding: 40px 20px 0;
  }
  .main .block31-info {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #F1F1F1;
    padding-bottom: 50px;
    margin-bottom: 40px;
  }
  .main .block31-title {
    font-size: 22px;
  }
  .main .block31 .info-text {
    font-size: 13px;
    line-height: 24px;
    margin: 10px 0 20px;
  }
  .main .block31-form {
    width: 100%;
    flex-direction: column;
  }
  .main .block31-form .input-box {
    width: 100%;
  }
  .main .block31-form .form-submit {
    width: 100%;
    margin-top: 20px;
  }
  .main .block31-link {
    width: 100%;
    height: 200px;
  }
  .main .block31-link p {
    font-size: 13px;
    margin-top: 13px;
  }
  .footer-box {
    flex-wrap: wrap;
  }
  .footer .item:nth-child(1) {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 26px;
  }
  .footer .item:nth-child(1) .item-link {
    /*display: none;*/
  }
  .footer .item:nth-child(2) {
    width: 50%;
    text-align: center;
    align-items: center;
  }
  .footer .item:nth-child(4) {
    width: 50%;
    text-align: center;
    align-items: center;
  }
  .footer .item:nth-child(5) {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer-link {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .footer-link .phone {
    margin-right: 0;
    text-align: center;
  }
  .footer-link .phone span {
    font-size: 11px;
    line-height: 12px;
  }
  .footer-link .phone a {
    font-size: 18px;
    line-height: 20px;
  }
  .footer-link .socials {
    margin-top: 14px;
  }
  .footer-btn {
    flex-direction: row;
    align-items: start;
  }
  .footer-btn button {
    width: auto;
  }
  .footer-btn .sign-in {
    margin-right: 15px;
    margin-bottom: 0;
  }
  .footer-bottom {
    height: 45px;
  }
  .footer-bottom p {
    font-size: 11px;
    line-height: 12px;
  }
}
@media (max-width: 576px) {
  .title-text {
    font-size: 23px;
    line-height: 35px;
  }
  .title-info {
    font-size: 13px;
    line-height: 25px;
  }
  .main .block1 {
    background-image: url(../img_main/png/3.png);
    height: 1250px;
    padding-top: 115px;
    border-radius: 0;
  }
  .main .block1 .title-info br {
    display: none;
  }
  .main .block2 {
    margin-top: -590px;
  }
  .main .block5 {
    background-image: url(../img_main/png/block5-mob.png);
    height: 650px;
    background-position: center;
    padding-top: 75px;
  }
  .main .block5-title {
    font-size: 17px;
    line-height: 27px;
    width: 100%;
    text-align: center;
  }
  .main .block5-item {
    justify-content: center;
  }
  .main .block5-item img {
    margin-left: -20px;
    margin-top: -20px;
  }
  .main .block5-item img:nth-child(2), .main .block5-item img:nth-child(3) {
    margin-left: -70px;
  }
  .main .block6 {
    margin-top: -70px;
    padding-bottom: 490px;
  }
  .main .block6-item {
    border-radius: 25px;
  }
  .main .block6-item:first-child {
    width: 100%;
    margin: 0 auto;
    padding: 17px 20px;
    padding-right: 15px;
    min-height: 572px;
  }
  .main .block6-item:last-child {
    top: 540px;
    width: 100%;
    padding: 35px 30px;
  }
  .main .block6-item:last-child .title-text {
    text-align: center;
  }
  .main .block7 {
    height: 466px;
  }
  .main .block7 img {
    width: 30px;
  }
  .main .block7 .title-text {
    font-size: 20px;
    line-height: 30px;
    margin: 10px 0 17px;
  }
  .main .block7 .info-text {
    width: 190px;
    text-align: center;
    font-size: 13px;
    line-height: 22px;
  }
  .main .block8 {
    margin-top: -80px;
  }
  .main .block8-box {
    border-radius: 25px;
  }
  .main .block8-item {
    width: 100% !important;
  }
  .main .block8-item:nth-child(1) {
    min-height: 270px;
    border-right: none;
  }
  .main .block8-item:nth-child(1) .item-text {
    width: 90%;
  }
  .main .block8-item:nth-child(1) .item-img {
    width: 267px;
  }
  .main .block8-item:nth-child(2) {
    min-height: 355px;
  }
  .main .block8-item:nth-child(2) .item-text {
    width: 100%;
  }
  .main .block8-item:nth-child(2) .item-img {
    width: 275px;
  }
  .main .block8-item:nth-child(3) {
    min-height: 343px;
    border-right: none;
    border-bottom: 1px solid #DADADA;
  }
  .main .block8-item:nth-child(3) .item-text {
    width: 100%;
  }
  .main .block8-item:nth-child(3) .item-img {
    width: 70%;
  }
  .main .block8-item:nth-child(4) {
    min-height: 205px;
  }
  .main .block8-item:nth-child(4) .item-text {
    width: 100%;
  }
  .main .block8-item:nth-child(4) .item-img {
    width: 50%;
  }
  .main .block9 {
    margin-top: -85px;
    width: 100%;
    height: 781px;
    border-radius: 0 0 25px 25px;
    background-image: url(../img_main/png/block9-mob.png);
    background-position: bottom;
    padding: 150px 0 0;
  }
  .main .block9 .title-text {
    font-size: 30px;
    line-height: 62px;
  }
  .main .block9-text {
    font-size: 15px;
    line-height: 27px;
    width: 100%;
  }
  .main .block9-info {
    width: 100%;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    font-size: 13px;
    line-height: 22px;
    margin: 20px 0 0;
  }
  .main .block9-info img {
    margin-right: 10px;
    width: 31px;
  }
  .main .block10 {
    margin-top: -50px;
    overflow: hidden;
  }
  .main .block10-top {
    padding: 20px;
    border-radius: 40px;
    background-image: url(../img_main/png/block10-mob.png);
    justify-content: start;
    background-position: bottom;
    height: 329px;
    width: 300px;
    margin: 0 auto;
  }
  .main .block10-top .top-title {
    font-size: 17px;
    line-height: 30px;
  }
  .main .block10-top .top-title br {
    display: none;
  }
  .main .block10-top .top-title span {
    background: transparent;
  }
  .main .block10-top .top-title span span {
    background: #fff;
  }
  .main .block10-box {
    padding-bottom: 186px;
    border-end-end-radius: 40px;
    background: #fff;
  }
  .main .block10-box::before {
    display: none;
  }
  .main .block10-box::after {
    content: url(../img_main/png/lines.png);
    position: absolute;
    right: 10px;
    top: 95px;
  }
  .main .block10-box .one-img {
    position: absolute;
    right: 40%;
    top: 75%;
    width: 78px;
    opacity: 0.2;
  }
  .main .block10-box .form-img {
    position: absolute;
    right: -70px;
    top: 40%;
    width: 300px;
    transform: rotate(20deg);
    z-index: 5;
  }
  .main .block10-box .info-box {
    width: 100%;
    padding: 30px 0 0;
  }
  .main .block10-box .info-box .title-text {
    font-size: 22px;
    line-height: 30px;
  }
  .main .block10-box .info-box .num {
    margin: 20px 0 15px;
  }
  .main .block10-box .info-box .subtitle-text {
    margin: 7px 0 13px;
  }
  .main .block10-box .info-box .info-list {
    flex-direction: column;
  }
  .main .block10-box .info-box .info-list li {
    width: 157px;
    margin: 0 0 10px 0;
    padding: 7.5px 10px 7.5px 15px;
  }
  .main .block10-box .info-box .info-list li::before {
    content: url(../img_main/svg/check-min.svg);
    margin-right: 10px;
  }
  .main .block10 .item-box {
    border-radius: 20px;
    font-size: 13px;
    line-height: 22px;
  }
  .main .block10 .item-box img {
    width: 31px;
    margin-right: 10px;
  }
  .main .block10 .item2 {
    flex-direction: column-reverse;
    background-image: none;
  }
  .main .block10 .item2 .item2-img {
    width: 100%;
    height: 418px;
    border-radius: 25px;
    margin-top: 36px;
  }
  .main .block10 .item2 .item2-img::before {
    width: 25px;
    height: 25px;
    right: 45%;
    top: -3px;
  }
  .main .block10 .item2 .item2-img img {
    border-radius: 25px;
  }
  .main .block10 .item2 .subtitle {
    margin: 10px 0 7px;
  }
  .main .block10 .item2 .subtitle br {
    display: none;
  }
  .main .block10 .item2-info {
    width: 100%;
  }
  .main .block10 .item2 .item-box {
    margin-top: 15px;
  }
  .main .block10 .item3 {
    padding: 200px 0 20px;
    margin-top: -170px;
  }
  .main .block10 .item3-img {
    width: 100%;
  }
  .main .block10 .item4-box {
    padding-bottom: 0;
  }
  .main .block10 .item4-box::before {
    display: none;
  }
  .main .block10 .item4-box .rubl {
    display: none;
  }
  .main .block10 .item4-box .payment {
    display: none;
  }
  .main .block10 .item4-info {
    width: 100%;
    padding: 50px 0;
  }
  .main .block10 .item4 .subtitle {
    margin: 20px 0 15px;
  }
  .main .block10 .item4 .lock {
    padding: 11px 17px;
    font-size: 13px;
    line-height: 20px;
    margin: 20px 0;
  }
  .main .block10 .item4 .lock img {
    width: 14px;
    margin-right: 12px;
  }
  .main .block10 .item4-subtitle {
    font-size: 13px;
    line-height: 20px;
  }
  .main .block10 .item4-text {
    font-size: 13px;
    line-height: 20px;
    margin: 15px 0;
  }
  .main .block10 .item4 .item-box {
    margin-bottom: 15px;
  }
  .main .block10 .item4 .item-box img {
    width: 17px;
  }
  .main .block10 .item4 .item4-img_mob {
    display: block;
    width: 100%;
    margin-top: -110px;
    position: relative;
    z-index: 5;
  }
  .main .block10 .item5 {
    margin: 0;
    padding-bottom: 60px;
  }
  .main .block10 .item5-top {
    padding-top: 55px;
  }
  .main .block10 .item5-top .subtitle {
    margin: 20px 0 10px;
  }
  .main .block10 .item5-top .step-suptitle {
    font-size: 18px;
    line-height: 18px;
    margin: 70px 0 30px;
  }
  .main .block10 .item5 .step {
    overflow: hidden;
    border-radius: 20px;
    flex-direction: column;
    padding: 0;
  }
  .main .block10 .item5 .step-subtitle {
    font-size: 16px;
    line-height: 22px;
    margin: 10px 0;
  }
  .main .block10 .item5 .step-text {
    font-size: 13px;
    line-height: 22px;
  }
  .main .block10 .item5 .step-info {
    width: 100% !important;
    padding: 20px;
  }
  .main .block10 .item5 .step-img {
    position: relative;
    height: auto;
    width: 100%;
    margin-top: -100px;
  }
  .main .block10 .item5 .step-img:first-child {
    display: none;
  }
  .main .block10 .item5 .step-img:last-child {
    display: block;
  }
  .main .block10 .item5 .item5-top .step .step-img {
    margin-top: -105px !important;
  }
  .main .block10 .item5 .step:nth-child(2) .step-img {
    margin-top: -70px;
  }
  .main .block10 .item5 .step:nth-child(3) .step-img {
    margin-top: -70px;
  }
  .main .block10 .item5 .step:nth-child(4) .step-img {
    margin-top: -90px;
  }
  .main .block10 .item6 {
    margin-top: -10px;
  }
  .main .block10 .item6 .container {
    padding: 0;
    padding-bottom: 60px;
  }
  .main .block10 .item6-box {
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 20px;
  }
  .main .block10 .item6-box .item6-title {
    padding: 40px 30px 0;
    position: relative;
    z-index: 3;
  }
  .main .block10 .item6-box .item6-title br {
    display: none;
  }
  .main .block10 .item6-box .item6-img,
  .main .block10 .item6-box .item6-bg {
    display: none;
  }
  .main .block10 .item6-box .item6-mob {
    display: block;
    width: 100%;
    object-fit: cover;
    margin-top: -70px;
  }
  .main .block10 .item6-info {
    padding: 25px;
    border-radius: 20px;
    flex-direction: column;
    text-align: center;
  }
  .main .block10 .item6-info .left {
    width: 100%;
    flex-direction: column;
  }
  .main .block10 .item6-info .left img {
    width: 40px;
    margin-right: 20px;
  }
  .main .block10 .item6-info .left-title {
    font-size: 18px;
    line-height: 28px;
    margin: 15px 0 10px;
  }
  .main .block10 .item6-info .right-text {
    font-size: 13px;
    line-height: 22px;
    width: 100%;
  }
  .main .block13-box .box-img {
    display: none;
  }
  .main .block13 .title-text {
    font-size: 28px;
    line-height: 47px;
    text-align: center;
  }
  .main .block13 .title-text span {
    border-radius: 12px;
    padding: 0 12px;
  }
  .main .block13 .info-text {
    font-size: 13px;
    line-height: 21px;
    text-align: center;
  }
  .main .block13 .faqs {
    margin-top: 20px;
  }
  .main .block13 .faqs .faq {
    margin-bottom: 10px;
    border-radius: 20px;
  }
  .main .block13 .faqs .faq-head {
    padding: 15px;
    position: relative;
  }
  .main .block13 .faqs .faq-head .head-num {
    display: none;
  }
  .main .block13 .faqs .faq-head .head-title {
    font-size: 14px;
    line-height: 20px;
  }
  .main .block13 .box-text {
    font-size: 20px;
    line-height: 30px;
    margin-top: 60px;
  }
  .main .block13 .box-text span {
    line-height: 20px;
    border-radius: 10px;
    padding: 0 10px 5px;
  }
  .main .block13 .box-text::before {
    top: -25px;
  }
  .main .block14 {
    margin-top: 0;
  }
  .main .block14-info {
    width: 100%;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
  .main .block14 .container {
    padding: 60px 20px 0;
  }
  .main .block14 .container .line {
    display: none;
  }
  .main .block14 .suptitle {
    font-size: 14px;
    line-height: 25px;
  }
  .main .block14 .title-text {
    font-size: 20px;
    line-height: 32px;
    margin: 9px 0 25px;
	font-weight: 500;
  }
  .main .block14 .regis-btn::before {
    display: none;
  }
  .main .block14-bg {
    width: 100%;
    position: relative;
    right: 0;
    margin-bottom: -5px;
  }
  .main .faq_page {
    margin: 100px 0 0;
  }
  .main .faq_page .block13-box {
    background: #fff;
    border-radius: 0;
    padding: 0 20px;
    overflow-x: hidden;
    padding-bottom: 50px;
  }
  .main .faq_page .block13-box .box-img {
    display: block;
    top: 1%;
    right: -30%;
    width: 80%;
  }
  .main .faq_page .title-text {
    font-size: 28px;
    line-height: 35px;
    text-align: left;
  }
  .main .faq_page .info-text {
    font-size: 13px;
    line-height: 25px;
    margin: 15px 0;
    text-align: left;
    width: 75%;
  }
  .main .faq_page .info-text br {
    display: none !important;
  }
  .main .faq_page .call {
    font-size: 13px;
    width: 150px;
    display: inline-block;
  }
  .main .faq_page .call::after {
    content: url(../img_main/svg/arrow-call.svg);
    margin-left: 5px;
  }
  .main .faq_page .call:hover {
    opacity: 0.8;
  }
  .main .faq_page .box-img {
    right: 0;
    top: -130px;
  }
  .main .faq_page .faqs {
    margin-top: 34px;
  }
  .main .block14_faq {
    margin: 0;
    margin-top: -50px;
  }
  .main .block15 .container {
    padding: 100px 20px 40px;
  }
  .main .block15-img {
    height: 280px;
    right: -100px;
    top: 100px;
  }
  .main .block15-info {
    width: 100%;
  }
  .main .block15 .title-text {
    font-size: 28px;
    line-height: 35px;
  }
  .main .block15 .info {
    width: 172px;
    font-size: 12px;
    line-height: 19px;
    border-radius: 20px;
    margin: 20px 0;
    flex-direction: column;
    align-items: start;
  }
  .main .block15 .info img {
    margin: 0 0 8px 0;
    width: 35px;
  }
  .main .block15 .info-text {
    font-size: 13px;
  }
  .main .block15 .info-list {
    margin: 0 0 30px;
  }
  .main .block15 .info-list li {
    font-size: 13px;
  }
  .main .block15 .info-sub {
    width: 100%;
    font-size: 12px;
    border-radius: 20px;
    padding-left: 20px;
  }
  .main .block15 .info-sub img {
    width: 35px;
    margin-right: 12px;
  }
  .main .block16 {
    background-image: url(../img_main/png/bg-white_mob.png);
    padding: 120px 0 0;
    margin-top: -90px;
  }
  .main .block16 .title-text {
    font-size: 25px;
    line-height: 33px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  .main .block16 .container {
    padding: 0;
  }
  .main .block16-box {
    margin-top: 25px;
  }
  .main .block16-item {
    min-height: auto;
    border-radius: 30px;
    padding: 30px 25px;
    margin-bottom: 20px;
  }
  .main .block16-item:last-child {
    margin-bottom: 0;
  }
  .main .block16-item .item-icon {
    width: 25px;
  }
  .main .block16-item .item-title {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px;
  }
  .main .block16-item .item-text {
    font-size: 13px;
    line-height: 23px;
    margin-top: 7px;
  }
  .main .block16-item:nth-child(2) {
    background-image: url(../img_main/png/p2_mob.png);
  }
  .main .block16-item:nth-child(2) .item-info {
    width: 100%;
  }
  .main .block16-item:nth-child(2) .item-bg {
    display: none;
  }
  .main .block16-item:nth-child(5) {
    background-image: url(../img_main/png/p5_mob.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
  }
  .main .block16-item:nth-child(5) .item-info {
    width: 75%;
  }
  .main .block16-item:nth-child(5) .item-bg {
    display: none;
  }
  .main .block17 .container {
    padding: 0;
  }
  .main .block17-top {
    padding: 0 20px;
  }
  .main .block17 .steps .step {
    flex-direction: column;
  }
  .main .block17 .steps .step .mob-img {
    display: block;
    width: 100%;
    object-fit: contain;
  }
  .main .block17 .steps .step:nth-child(1) {
    background-image: none;
    padding: 0px;
  }
  .main .block17 .steps .step:nth-child(1) .step-info {
    padding: 30px 30px 15px 30px;
    width: 100%;
  }
  .main .block17 .steps .step:nth-child(2) {
    background-image: none;
    padding: 0px;
  }
  .main .block17 .steps .step:nth-child(2) .step-info {
    padding: 30px 30px 15px 30px;
    width: 100%;
  }
  .main .block17 .steps .step:nth-child(3) {
    justify-content: start;
  }
  .main .block17 .steps .step:nth-child(3) .step-info {
    width: 50%;
  }
  .main .block17 .steps .step:nth-child(3) .step-img {
    left: 45%;
    top: 0;
  }
  .main .block17 .steps .step:nth-child(4) {
    flex-direction: column-reverse;
  }
  .main .block17 .steps .step:nth-child(4) .arrow {
    display: none;
  }
  .main .block17 .steps .step:nth-child(4) .step-info {
    width: 100%;
    margin-top: 15px;
  }
  .main .block17 .steps .step:nth-child(4) .step-info .top {
    display: none;
  }
  .main .block17 .steps .step:nth-child(4) .step-item {
    width: 100%;
    padding-top: 0;
  }
  .main .block17 .steps .step:nth-child(4) .step-item .top {
    display: block;
    margin-bottom: 25px;
  }
  .main .block17 .steps .step:nth-child(4) .step-item .item {
    font-size: 14px;
  }
  .main .block17 .steps .step:nth-child(4) .step-item .item img {
    width: 30px;
  }
  .main .block17 .steps .step:nth-child(4) .step-item .item-text {
    font-size: 13px;
    margin: 10px 0 20px;
  }
  .main .block17 .steps .step:nth-child(5) {
    justify-content: start;
    overflow: hidden;
    padding-bottom: 180px;
  }
  .main .block17 .steps .step:nth-child(5) .step-info {
    width: 80%;
  }
  .main .block17 .steps .step:nth-child(5) .step-img {
    position: absolute;
    left: 10%;
    bottom: -12%;
    height: 303px;
  }
  .main .block6_price {
    margin-top: 0;
  }
  .main .block18 {
    height: 376px;
    margin-top: 55px;
    padding-bottom: 178px;
  }
  .main .block18 .title-text {
    font-size: 30px;
    line-height: 30px;
	font-weight: 500;
  }
  .main .block18 .new-order_btn {
    font-size: 13px;
  }
  .main .block18 .new-order_btn img {
    width: 30px;
  }
  .main .contact-bg {
    position: absolute;
    width: 70%;
    right: -20%;
    top: -5%;
    opacity: 0.5;
  }
  .main .block19 {
    padding-bottom: 50px;
    position: relative;
  }
  .main .block19-info {
    width: 100%;
  }
  .main .block19-info .projects {
    display: none !important;
  }
  .main .block19-img {
    width: 100%;
    position: relative;
    right: 0;
  }
  .main .block19 .projects {
    display: block;
    position: absolute;
    top: 100%;
    width: 240px;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
  }
  .main .block19 .projects::after {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
  }
  .main .block21 {
    margin: 40px 0 0;
  }
  .main .block21 .container {
    padding: 0;
  }
  .main .block21-box {
    width: 100%;
    height: 548px;
    border-radius: 30px;
    background-image: url(../img_main/png/block21_mob.png);
    align-items: start;
    justify-content: center;
  }
  .main .block21-box .box-img {
    display: none;
  }
  .main .block21-box .box-img_mob {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
	width: 344px;
  }
  .main .block21-box .info {
    width: 100%;
    padding: 30px;
    text-align: center;
  }
  .main .block23 .container {
    padding: 0;
  }
  .main .block23 .title-text {
    padding: 0 20px;
  }
  .main .block23 .title-subtext {
    padding: 0 20px;
  }
  .main .block24 .info-text {
    margin-top: 20px;
  }
  .main .block24 .info-text br {
    display: none;
  }
  .main .block24-box {
    margin-top: 0;
  }
  .main .block24-item {
    width: 100%;
    margin-top: 10px;
  }
  .main .block24-item:first-child {
    margin-top: 20px;
  }
  .main .block25-img {
    position: relative;
    margin-top: -30px;
    width: 100%;
  }
  .main .block25 .title-subtext,
  .main .block25 .title-suptext,
  .main .block25 .title-text {
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .main .block25 .title-subtext br,
  .main .block25 .title-suptext br,
  .main .block25 .title-text br {
    display: none;
  }
  .main .block25-box {
    position: relative;
    z-index: 1;
    margin-top: -100px;
  }
  .main .block25-box .left {
    width: 100%;
  }
  .main .block25-box .left .block25-item:nth-child(1) {
    width: 100%;
  }
  .main .block25-box .left .block25-item:nth-child(1) .info {
    width: 100%;
  }
  .main .block25-box .left .block25-item:nth-child(1) .item-img {
    width: 100%;
    position: relative;
    margin-left: -5%;
	display: block;
  }
  .main .block25-box .left .block25-item:nth-child(2) {
    display: block !important;
    width: 100%;
  }
  .main .block25-box .left .block25-item:nth-child(2) .item-img {
    position: relative;
    width: 100%;
    margin-top: 20px;
  }
  .main .block25-box .left .block25-item:nth-child(3), .main .block25-box .left .block25-item:nth-child(4) {
    width: 100%;
    height: auto;
  }
  .main .block25-box .left .block25-item:nth-child(3) .item-img, .main .block25-box .left .block25-item:nth-child(4) .item-img {
    margin-top: -30px;
	display: block;
  }
  .main .block25-box .left .block25-item:nth-child(3) .item-img {
    margin-top: -30px;
  }
  .main .block25-box .right {
    width: 100%;
  }
  .main .block25-box .right .block25-item {
    display: none;
  }
  .main .block25-box .right .problems {
    height: 210px;
    padding: 20px;
    margin-top: 50px;
  }
  .main .block26-box {
    background-image: url(../img_main/png/block26-mob.png);
    padding-bottom: 220px;
    background-position: bottom;
    border-radius: 30px;
  }
  .main .block26 .title-text {
    width: 100%;
  }
  .main .block26 .info-box {
    margin-top: 15px;
    flex-direction: column;
    align-items: start;
  }
  .main .block26 .info-box p {
    font-size: 13px;
    line-height: 14px;
    margin-right: 0;
    margin-bottom: 22px;
  }
  .main .block26 .info-box p br {
    display: none;
  }
  .main .block26 .info-box .info {
    padding: 11px 16px;
    font-size: 13px;
    line-height: 21px;
    width: 285px;
  }
  .main .block26 .info-box .info::before {
    content: url(../img_main/png/try.png);
    position: absolute;
    bottom: 80%;
    right: 88%;
    transform: rotate(90deg);
  }
  .main .block26-items {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0;
  }
  .main .block26-items .item {
    margin-top: 30px;
  }
  .main .block26-items .item:first-child {
    margin-top: 50px;
  }
  .main .block29-info {
    width: 72%;
  }
  .main .block29 .info {
    flex-direction: column;
    align-items: start;
  }
  .main .block29 .info img {
    margin: 0 0 8px 0;
    width: 35px;
  }
  .main .block29 .subtext {
    width: 80%;
  }
  .main .block29-img {
    width: 110%;
    right: -45%;
    bottom: 50%;
    transform: translateY(50%);
  }
  .main .projects .project-img {
    height: 200px;
  }
  .main .reviews {
    padding: 0;
  }
  .main .reviews .container {
    padding-top: 50px;
  }
  .main .reviews .container .reviews-img {
    display: none;
  }
  .main .reviews .info-text br {
    display: none;
  }
  .main .reviews .title-text {
    font-size: 30px;
    line-height: 30px;
    margin-top: 20px;
  }
  .main .reviews .swiper-btns {
    display: none;
  }
  .main .reviews .review {
    height: 380px;
  }
  .main .reviews .review-text {
    font-size: 14px;
    line-height: 19px;
  }
  .main .project-tabs .tab-btns {
    position: relative;
  }
  .main .project-tabs .tab-btns .tab-active {
    width: 100%;
    height: 40px;
    border-radius: 15px;
    padding: 0 25px;
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    color: #f35e32;
    position: relative;
    z-index: 11;
    background: #fff;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    display: flex;
  }
  .main .project-tabs .tab-btns .btns {
    padding: 0 0 15px 15px;
    border-radius: 15px;
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 10;
    background: #fff;
    padding-top: 40px;
    display: none;
  }
  .main .project-tabs .tab-btns .btns .tab-btn {
    margin: 0;
    display: flex;
    width: 100%;
    padding: 12.5px 25px;
  }
  .main .project-tabs .tab-btns .btns .tab-btn span {
    padding: 0;
    background: transparent;
    border-radius: 0;
    font-size: 13px;
    color: #403f3b;
    opacity: 0.5;
  }
  .main .project-tabs .tab-btns .btns .tab-btn input:checked ~ span {
    background: transparent;
    color: #403f3b;
    opacity: 1;
  }
  .main .project-tabs .showBtns .tab-active img {
    transform: rotate(180deg);
  }
  .main .project-tabs .showBtns .btns {
    display: flex;
  }
  .main .project-tabs .tab-box .tab-item {
    grid-template-columns: repeat(1, 1fr);
  }
  .main .block11-item .item-img {
    width: 260px;
  }
}
@media (max-width: 420px) {
  .popUp-thanks .popUp-content {
    width: 97%;
  }
}/*# sourceMappingURL=main.css.map */

.avatar_min {
  height: calc(100% - 10px);
  margin: 5px 0;
  border-radius: 50%;
  vertical-align: middle;
  margin-left: -10px;
  margin-right: 10px;
}

.popUp-portfolio-image img {
	display:block;
}

.popUp-portfolio-image .prev {
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  background: transparent;
  width: 10%;
  font-size: 30px;
  color:#FFFFFF8a;
}

.popUp-portfolio-image .prev:hover {
  background: #0000008a;
  color:#fff;
}

.popUp-portfolio-image .next {
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
  background: transparent;
  width: 10%;
  font-size: 30px;
  color:#FFFFFF8a;
}

.popUp-portfolio-image .next:hover {
  background: #0000008a;
  color:#fff;
}

.to-top.to-show {
  display: block;
  opacity: 1;
}
.to-top {
  position: fixed;
  bottom: 40px;
  left: 40px;
  transition: 0.2s ease;
  cursor: pointer;
  background: rgb(230, 114, 60);
  box-shadow: inset 0 -2px 8px rgba(0,0,0,.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  opacity: 0;
  z-index: 9999;
}
.to-top::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  top: 20px;
  left: 17px;
}







@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	.main .block1 {
	  background-image: url("../img_main/png2x/block1.png");
	}
	.main .block3 .item-box:first-child .items .item {
	  background-image: url("../img_main/png2x/block3.png");
	}
	.main .block4-info {
	  background-image: url(../img_main/png2x/block4.png);
	}
	.main .block4-info::before {
	  content: url(../img_main/png2x/shape.png);
	}
	.main .block5 {
	  background-image: url(../img_main/png2x/block5.png);
	}
	.main .block6-item {
	  background-image: url(../img_main/png2x/block6_1.png);
	}
	.main .block6-item:last-child {
	  background-image: url(../img_main/png2x/block6_2.png);
	}
	.main .block7 {
	  background-image: url(../img_main/png2x/block7.png);
	}
	.main .block9 {
	  background-image: url(../img_main/png2x/block9.png);
	}
	.main .block10-top {
	  background-image: url(../img_main/png2x/block10.png);
	}
	.main .block10 .item2 {
	  background-image: url(../img_main/png2x/item2-bg.png);
	}
	.main .block16 {
	  background-image: url(../img_main/png2x/bg-white.png);
	}
	.main .block17 .steps .step:nth-child(1) {
	  background-image: url(../img_main/png2x/st1.png);
	}
	.main .block17 .steps .step:nth-child(2) {
	  background-image: url(../img_main/png2x/st2.png);
	}
	.main .block6_price .block6-item:first-child {
	  background-image: url(../img_main/png2x/block6_3.png);
	}
	.main .block6_price .block6-item:last-child {
	  background-image: url(../img_main/png2x/block6_4.png);
	}
	.main .block18 {
	  background-image: url(../img_main/png2x/price-bg.jpg);
	}
	.main .block21-box {
	  background-image: url(../img_main/png2x/block21.png);
	}
	.main .block23 .left .block23-item:first-child {
	  background-image: url(../img_main/png2x/block23_1.png);
	}
	.main .block24 {
	  background-image: url(../img_main/png2x/block24.png);
	}
	.main .block26-box {
	  background-image: url(../img_main/png2x/block26.png);
	}
	.main .block26 .info-box .info::before {
	  content: url(../img_main/png2x/try.png);
	}
	.main .block28 {
	  background-image: url(../img_main/png2x/block28.png);
	}
	.main .block31-link {
	  background-image: url(../img_main/png2x/next-pr.png);
	}
	@media (max-width: 992px) {
	  .main .block4-info {
		background-image: url(../img_main/png2x/block4-mob.png);
	  }
	  .main .block10-top {
		background-image: url(../img_main/png2x/block10.png);
	  }
	  .main .block6_price .block6-item:first-child {
		background-image: url(../img_main/png2x/block6_3.png);
	  }
	  .main .block6_price .block6-item:last-child {
		background-image: url(../img_main/png2x/block6_4.png);
	  }
	}
	@media (max-width: 767px) {
	  .main .block3 .item-box:first-child .items .item {
		background-image: url("../img_main/png2x/block3-mob.png");
	  }
	}
	@media (max-width: 576px) {
	  .main .block1 {
		background-image: url("../img_main/png2x/3.png");
	  }
	  .main .block5 {
		background-image: url(../img_main/png2x/block5-mob.png);
	  }
	  .main .block9 {
		background-image: url(../img_main/png2x/block9-mob.png);
	  }
	  .main .block10-top {
		background-image: url(../img_main/png2x/block10-mob.png);
	  }
	  .main .block10-box::after {
		content: url(../img_main/png2x/lines.png);
	  }
	  .main .block16 {
		background-image: url(../img_main/png2x/bg-white_mob.png);
	  }
	  .main .block16-item:nth-child(2) {
		background-image: url(../img_main/png2x/p2_mob.png);
	  }
	  .main .block16-item:nth-child(5) {
		background-image: url(../img_main/png2x/p5_mob.png);
	  }
	  .main .block21-box {
		background-image: url(../img_main/png2x/block21_mob.png);
	  }
	  .main .block26-box {
		background-image: url(../img_main/png2x/block26-mob.png);
	  }
	  .main .block26 .info-box .info::before {
		content: url(../img_main/png2x/try.png);
	  }
	}
}
@media (max-width: 576px) {
  .main .block17 .steps .step:nth-child(1) {
    background-image: none;
  }
  .main .block17 .steps .step:nth-child(2) {
    background-image: none;
  }
}



.main_index .title-text {
  max-width: 770px;
  font-size:40px;
  line-height: 52px;
}
.main_index .title-info {
  font-size: 16px;
  line-height: 22px;
}
.main_index_calc {
  display: inline-flex;
  height: 70px;
  border-radius: 20px;
  background: #FFFFFF;
  box-shadow: 0px 0px 100px 0px #0000001A;
  align-items: center;
}
.main_index_calc_div1 {
  font-family: Ubuntu;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0%;
  padding-left: 17px;
}
.main_index_calc_div2 {
  border: 1px solid #E9E9E9;
  border-radius: 15px;
  padding: 5px;
  display: flex;
  margin: 0 10px;
}
.main_index_calc_minus {
  width: 35px;
  height: 35px;
  display: inline-block;
  line-height: 35px;
  text-align: center;
  border-radius: 11px;
  background:#F5F5F5 url(../img_main/svg/main_index_calc_minus.svg) no-repeat center center / 13px auto;
}
.main_index_calc_plus {
  width: 35px;
  height: 35px;
  display: inline-block;
  line-height: 35px;
  text-align: center;
  border-radius: 11px;
  background:#F5F5F5 url(../img_main/svg/main_index_calc_plus.svg) no-repeat center center / 13px auto;
}
.main_index_calc_input {
  text-align: center;
  margin: 0 5px 0 8px;
  font-family: Ubuntu;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}
.main_index_calc_m2 {
  line-height: 35px;
  margin-right: 8px;
}
.main_index_calc_button {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: #F35E32;
  box-shadow: 0px 10px 30px 0px #F35E3280;
  margin-right: 17px;
}
.main_index_calc_sum {
  height: 45px;
  border-radius: 12px;
  display: inline-block;
  vertical-align: middle;
  line-height: 45px;
  margin-right: 10px;
  background: #FFECE7;
  padding: 0 16px;
  font-family: Ubuntu;
  font-weight: 500;
  font-size: 14px;
}
a.main_index_calc_reg {
  height: 45px;
  line-height: 43px;
  padding:0 20px;
  border-radius: 12px;
  background: #F35E32;
  box-shadow: 0px 10px 30px 0px #F35E3280;
  margin-right: 17px;
  display:inline-block;
  font-family: Ubuntu;
  font-weight: 500;
  font-size: 14px;
  color:#fff;
  vertical-align: middle;
}
.main_index .block1 .block2 {
	display:none;
}
.main_index .block1 + .block2 {
	display:block;
}

@media (max-width: 992px) {
  .main.main_index .block1 {
    height: 600px;
  }
}

@media (max-width: 576px) {
.main.main_index .block1 + .block2 {
  display:none;
}
.main.main_index .block1 .block2 {
  display:block;
}
.main.main_index .block2 {
  margin-top: 350px;
  padding-bottom: 100px;
}
.main.main_index .block3 {
  margin-top: -70px;
}
.main.main_index .title-text {
  text-align: center;
  font-size: 27px;
  line-height: 35px;
}
.main.main_index .title-info {
  font-family: Ubuntu;
  font-weight: 300;
  font-size: 13px;
  line-height: 19px;
  text-align: center;
  margin: 12px 0 32px 0 !important;
  padding: 0;
}
.main_index_calc {
  display: block;
  padding: 13px 40px;
  height: auto;
  margin: 0 10px 28px 10px;
}
.main_index_calc_div1 {
  text-align: center;
  font-family: Ubuntu;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 13px;
}
.main_index_calc_div1 br {
  display: none;
}
.main_index_calc_div2 {
  justify-content: space-between !important;
  margin: 0 0 10px 0;
  border-radius: 20px;
}
.main_index_calc_input {
  font-size: 17px;
  height: 45px;
}
.main_index_calc_m2 {
  font-size: 17px;
}
.main_index_calc_button {
  width: 100%;
  display: flex;
  justify-content: space-between !important;
  height: 55px;
  padding: 0 22px;
  border-radius: 20px;
  margin:0 0 10px 0;
  align-items: center;
}
.main_index_calc_button::before {
  content: "Рассчитать";
  color: #fff;
  display: block;
  line-height: 55px;
  font-family: Ubuntu;
  font-weight: 400;
  font-size: 15px;
}
.main_index_calc_minus {
  height: 45px;
  width: 45px;
  border-radius: 15px;
}
.main_index_calc_plus {
  height: 45px;
  width: 45px;
  border-radius: 15px;
}
.main_index_calc_button img {
  width: 13px;
}
.main_index_calc_sum {
  height: 55px;
  line-height: 55px;
  display: block;
  text-align: center;
  font-family: Ubuntu;
  font-weight: 500;
  font-size: 17px;
  margin: 0 0 10px 0;
}
.main_index_calc_sum {
  height: 55px;
  line-height: 55px;
  display: block;
  text-align: center;
  font-family: Ubuntu;
  font-weight: 500;
  font-size: 17px;
  margin: 0 0 10px 0;
  border-radius: 20px;
}
a.main_index_calc_reg {
  height: 55px;
  line-height: 53px;
  margin: 0 0 10px 0;
  border-radius: 20px;
  font-size: 15px;
  display: flex;
  justify-content: space-between !important;
}
a.main_index_calc_reg::after {
  content: url(../img_main/svg/main_index_calc_btn.svg);
}
.main.main_index .block2 {
  
}
.main_index_calc + .title-info {
  margin-bottom: 10px !important;
}
.main.main_index .block1 {
  background-position: center 0 !important;
  height: auto !important;
  background-size: auto 100%;
}
.main.main_index .main_index_calc + .title-info {
  margin-bottom: 10px !important;
  margin-top: 0 !important;
}
.main .block1-info {
  justify-content: center !important;
}




}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  @media (max-width: 576px) {
    
  }
}

.cookies_main {
  min-height: 94px;
  position:fixed;
  z-index:9999;
  left:0;
  right:0;
  bottom:0;
  top:auto;
}
.cookies {
  max-width: 1230px;
  margin:0 auto;
  min-height: 94px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background: #00000099;
  display: flex;
}
.cookies_title {
  font-family: Ubuntu;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0%;
  color: #FFFFFF;
  padding-top: 17px;
  padding-bottom: 15px;
  padding-left: 20px;
  min-width: 22%;
}
.cookies_desc {
  font-family: Ubuntu;
  font-weight: 400;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0%;
  color: #FFFFFF;
  padding-top: 17px;
  padding-bottom: 15px;
  padding-left: 20px;
  min-width: 43%;
}
.cookies_btns {
  min-width: 35%;
  text-align: right;
  padding-top: 27px;
  padding-bottom: 15px;
  padding-right: 20px;
}
.cookies_btns button {
  width: 30%;
  height: 40px;
  border-radius: 11px;
  background: #FFFFFF40;
  font-family: Ubuntu;
  font-weight: 500;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0%;
  color: #FFFFFF;
  margin-left: 5px;
}
.cookies_btns button:first-child {
  color: #ffffff7a;
  background: none;
}
.cookies_btns button:last-child {
  background: #F35E32;
}



.popUp-cookies {
	z-index:10000;
}
.popUp-cookies-title {
  font-family: Ubuntu;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 15px;
}
.popUp-cookies-desc {
  font-family: Ubuntu;
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  letter-spacing: 0%;
  color: #95938F;
  margin-bottom: 15px;
}
.popUp-cookies-item {
  font-family: Ubuntu;
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0%;
  color: #3D3C397D;
  margin-bottom: 15px;
  display:flex;
}
.popUp-cookies-item span {
  font-family: Ubuntu;
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  display: block;
  margin-bottom: 3px;
  color: #3D3C39;
}
.popUp-cookies-item input {
  width: 13px;
  height: 15px;
  border-radius: 4px;
  margin-right: 6px;
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  min-width: 13px;
  margin-top: -2px;
}
.popUp-cookies-item input:checked {
	background:url("../img/svg/checked.svg") no-repeat center center;
}
.popUp-cookies-item input:not(:checked) {
	background:url("../img/svg/no-check.svg") no-repeat center center;
}
.popUp-cookies-btns button {
  width: 100%;
  height: 55px;
  border-radius: 12px;
  background: #F35E32;
  box-shadow: 0px 10px 30px 0px #F35E3280;
  font-family: Ubuntu;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
}
.popUp-cookies-items {
  margin-bottom: 30px;
}
.popUp-cookies-desc p {
  margin-bottom: 15px;
}
.popUp-cookies-desc {
  margin-bottom: 20px;
}


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


#privacy-policy-form-1 {
  display: flex;
  justify-content: space-between;
  width: 100%;
}


#privacy-policy-form-2 {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#privacy-policy-form-1 .form-btn {
  width: 180px;
}
#privacy-policy-form-1 .input-box {
  width: 180px;
}
#privacy-policy-form-1 .input-box input {
  text-align: left !important;
}







