rect {
  transition: 0.3s;
}

body{
  padding-top: var(--header-h, 115px);
}

/* можно поджать высоту на мобилке */
@media (max-width: 768px){
  body{ padding-top: var(--header-h, 64px); }
}

.header {
   position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 90;
  background:#fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.header_df {
  display: flex;
  padding: 37px 0;
  align-items: center;
}

.header_logo {
  margin-left: auto;
  margin-right: auto;
  min-width: 358px;
  max-width: 358px;
}

.header_nav {
  position: relative;
}

.header_nav_button {
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 55px;
}
.header_nav_button .btn {
  width: 23px;
  height: 16px;
  transition: 0.3s;
}
.header_nav_button .btn svg {
  height: inherit;
}
.header_nav_button .btn:hover rect {
  fill: #39bcbf !important;
}

.header_city_list {
  display: none;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
  width: 210px;
  border-radius: 4px;
}
.header_city_list a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 40px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid #efefef;
  transition: 0.3s;
}
.header_city_list a:last-child {
  border-bottom: none;
}
.header_city_list a:hover {
  color: #ffffff;
  background: #3bbdc1;
}
.header_city_list a:active {
  color: #ffffff;
  background: #3bbdc1;
}

.header_call_list {
  display: none;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
  width: 210px;
  border-radius: 4px;
}
.header_call_list a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 40px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid #efefef;
  transition: 0.3s;
}
.header_call_list a:last-child {
  border-bottom: none;
}
.header_call_list a:hover {
  color: #ffffff;
  background: #3bbdc1;
}

.header_socials {
  display: flex;
  align-items: center;
  margin-right: 63px;
}
.header_socials .btn {
  margin-right: 13px;
}
.header_socials .btn:last-child {
  margin-right: 0;
}
.header_socials .btn_wa {
  width: 21px;
}
.header_socials .btn_tg {
  width: 22px;
}
.header_socials .btn_max {
  width: 22px;
}

.header .header_socials .btn:hover path {
  fill: #18645f !important;
}

.header_city_but {
  padding-top: 2px;
}
.header_city_but .val {
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
  font-weight: 500;
  transition: 0.5s ease;
  text-transform: uppercase;
  margin-left: 15px;
}
.header_city_but .ic {
  width: 10px;
}
.header_city_but .line {
  width: 8px;
  margin-left: 15px;
  transition: 0.3s;
}
.header_city_but:hover .val {
  color: #39bcbf;
}
.header_city_but:hover path {
  fill: #39bcbf !important;
}

.header_call .name {
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
  font-weight: 500;
  transition: 0.5s ease;
  margin-left: 12px;
}
.header_call .line {
  width: 8px;
  margin-left: 15px;
  transition: 0.3s;
}
.header_call .ic {
  width: 12px;
  transition: 0.3s;
}
.header_call .btn:hover .name {
  color: #39bcbf;
}
.header_call .btn:hover path {
  fill: #39bcbf !important;
}

.header_city,
.header_call {
  position: relative;
}

.header_city_list,
.header_call_list {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 13px;
  background: #ffffff;
  z-index: 9;
}

.header_list {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  background: rgba(18, 18, 18, 0.75);
  opacity: 0;
  z-index: 102;
  transition: 0.4s;
}
.header_list.active {
  opacity: 1;
}
.header_list.active .header_menu {
  right: 0;
}

.header_menu {
  position: absolute;
  right: -100%;
  top: 0;
  bottom: 0;
  padding: 18px 0px;
  width: 400px;
  background: #fff;
  overflow: auto;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.header_menu_headline {
  display: flex;
  justify-content: space-between;
  padding: 0 20px 20px 45px;
  border-bottom: 1px solid #dfdfdf;
}
.header_menu_headline .btn {
  padding: 0;
  height: 20px;
  align-items: flex-start;
  padding-top: 2px;
  position: relative;
}
.header_menu_headline .btn:before {
  content: "";
  position: fixed;
  z-index: 1;
  top: 0;
  bottom: 0;
  right: 400px;
  left: 0;
}
.header_menu_headline .btn:hover span {
  color: #39bcbf;
}
.header_menu_headline .btn span {
  font-size: 46px;
  margin: 0;
  line-height: 0;
  color: #353535;
}

.header_menu_main {
  padding: 20px 45px 0;
}

.header_menu_main_list {
  border-bottom: 1px solid #dfdfdf;
}
.header_menu_main_list a {
  display: block;
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.header_menu_main_list a:hover {
  color: #39bcbf;
}

.header_menu_links {
  padding: 25px 45px 5px;
}
.header_menu_links .btn {
  margin-bottom: 20px;
}
.header_menu_links .btn:hover .val {
  color: #39bcbf;
}
.header_menu_links .btn .ic {
  min-width: 14px;
  max-width: 14px;
  margin-right: 14px;
}
.header_menu_links .btn .val {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.3s;
  margin-right: 16px;
  line-height: 1.1;
  padding-bottom: 1px;
}
.header_menu_links .btn .arrow {
  min-width: 6px;
  max-width: 6px;
}
.header_menu_links .btn .arrow path {
  fill: #39bcbf;
}

.header_menu_socials {
  display: flex;
  justify-content: space-between;
  padding: 0 45px 10px;
  gap: 6px;
}
.header_menu_socials .btn {
  flex-grow: 1;
  height: 36px;
  border-radius: 3px;
  border: 1px solid #dfdfdf;
}
.header_menu_socials .btn .ic {
  min-width: 18px;
  max-width: 18px;
  margin-right: 7px;
}
.header_menu_socials .btn.btn_tg .ic {
  min-width: 16px;
  max-width: 16px;
}
.header_menu_socials .btn.btn_max .ic {
  min-width: 14px;
  max-width: 14px;
}
.header_menu_socials .btn path {
  fill: #3bbdc0;
}
.header_menu_socials .btn .val {
  font-size: 12px;
  transition: 0.3s;
}
.header_menu_socials .btn:hover .val {
  color: #1e9ca0;
}
.header_menu_socials .btn:hover path {
  fill: #1e9ca0;
}
.header_menu_socials .btn:hover {
  border: 1px solid #1e9ca0;
}

.header_menu_mainLink {
  padding: 0 45px 25px;
}
.header_menu_mainLink .btn {
  width: 100%;
  border: 1px solid #dfdfdf;
  height: 36px;
  padding: 0 18px;
  border-radius: 3px;
}
.header_menu_mainLink .btn .ic {
  min-width: 14px;
  max-width: 14px;
  margin-right: 14px;
}
.header_menu_mainLink .btn .val {
  font-size: 12px;
  font-weight: 500;
  margin-right: auto;
  transition: 0.3s;
}
.header_menu_mainLink .btn .arrow {
  min-width: 16px;
  max-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #39bcbf;
  transition: 0.3s;
}
.header_menu_mainLink .btn .arrow svg {
  width: 6px;
}
.header_menu_mainLink .btn .arrow svg path {
  fill: #ffffff;
  transition: 0.3s;
}
.header_menu_mainLink .btn:hover {
  border: 1px solid #39bcbf;
  background: #39bcbf;
}
.header_menu_mainLink .btn:hover .val {
  color: #ffffff;
}
.header_menu_mainLink .btn:hover .ic path {
  fill: #ffffff !important;
}
.header_menu_mainLink .btn:hover .arrow {
  background: #ffffff;
}
.header_menu_mainLink .btn:hover .arrow svg path {
  fill: #39bcbf;
}

.footer {
  padding: 40px 0 30px;
}

.footer_top {
  display: flex;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.footer_city {
  min-width: 190px;
  max-width: 190px;
  margin-right: 20px;
}
.footer_city a {
  margin-top: 13px;
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1.4;
  border-bottom: 1px dashed #39bcbf;
  margin-left: 25px;
  text-transform: uppercase;
  color: #39bcbf;
  font-weight: 500;
}
.footer_city a:hover {
  color: #1e9ca0;
  border-bottom: 1px dashed #1e9ca0;
}

.footer_top_city_check {
  padding-left: 25px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  background: url("/images/check.svg") no-repeat left center/15px auto;
}

.footer_top_item {
  display: flex;
}

.footer_address {
  min-width: 340px;
  max-width: 340px;
  margin-right: 10px;
  padding-right: 25px;
}

.footer_top_right {
  flex-grow: 1;
}

.footer_top .lab {
  font-size: 12px;
  color: #505050;
  margin-bottom: 12px;
}

.footer_address_item {
  margin-bottom: 20px;
}
.footer_address_item .mame {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 9px;
  line-height: 1.4;
}
.footer_address_item .sheet {
  font-size: 14px;
  color: #505050;
  margin-bottom: 12px;
}
.footer_address_item .btn_map:hover .val {
  color: #1e9ca0;
}
.footer_address_item .btn_map:hover path {
  fill: #1e9ca0 !important;
}
.footer_address_item .btn_map .ic {
  min-width: 17px;
  max-width: 17px;
  margin-right: 12px;
}
.footer_address_item .btn_map .val {
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  margin-right: 16px;
  line-height: 1.1;
  padding-bottom: 2px;
  color: #39bcbf;
}
.footer_address_item .btn_map .arrow {
  min-width: 6px;
  max-width: 6px;
}
.footer_address_item .btn_map .arrow path {
  fill: #39bcbf;
}

.footer_call_phones {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.phones_numb {
  position: relative;
  margin-right: 23px;
  font-weight: 500;
  font-size: 18px;
}
.phones_numb:before {
  content: "";
  position: absolute;
  z-index: 1;
  background: #39bcbf;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  right: -13px;
  top: 50%;
  margin-top: -1px;
}
.phones_numb:last-child {
  margin-right: 0;
}
.phones_numb:last-child:before {
  display: none;
}

.footer .header_menu_socials {
  padding: 0;
  display: inline-flex;
}
.footer .header_menu_socials .btn {
  padding: 0 13px;
}

.footer_mail {
  min-width: 180px;
  max-width: 180px;
  margin-left: auto;
}
.footer_mail a {
  font-size: 16px;
  font-weight: 500;
}
.footer_mail a:hover {
  color: #39bcbf;
}

.footer_bottom {
  padding-top: 30px;
}

.footer_bottom_up {
  display: flex;
  margin-bottom: 35px;
}

.footer_bottom_link .btn {
  width: 100%;
  border: 1px solid #dfdfdf;
  height: 36px;
  padding: 0 18px;
  border-radius: 3px;
}
.footer_bottom_link .btn .ic {
  min-width: 14px;
  max-width: 14px;
  margin-right: 14px;
}
.footer_bottom_link .btn .val {
  font-size: 11px;
  font-weight: 500;
  margin-right: auto;
  transition: 0.3s;
  white-space: nowrap;
}
.footer_bottom_link .btn .arrow {
  min-width: 16px;
  max-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #39bcbf;
  margin-left: 23px;
  transition: 0.3s;
}
.footer_bottom_link .btn .arrow svg {
  width: 6px;
}
.footer_bottom_link .btn .arrow svg path {
  fill: #ffffff;
  transition: 0.3s;
}
.footer_bottom_link .btn:hover {
  border: 1px solid #39bcbf;
  background: #39bcbf;
}
.footer_bottom_link .btn:hover .val {
  color: #ffffff;
}
.footer_bottom_link .btn:hover .ic path {
  fill: #ffffff !important;
}
.footer_bottom_link .btn:hover .arrow {
  background: #ffffff;
}
.footer_bottom_link .btn:hover .arrow svg path {
  fill: #39bcbf;
}

.footer_bottom_copy {
  min-width: 340px;
  max-width: 340px;
  margin-left: auto;
  font-size: 12px;
  color: #505050;
  line-height: 1.4;
}
.footer_bottom_copy a:hover {
  color: #39bcbf;
}

.footer_bottom_logo {
  min-width: 140px;
  max-width: 140px;
  padding-right: 35px;
}

.footer_bottom_company {
  min-width: 200px;
  max-width: 200px;
  margin-right: 35px;
}
.footer_bottom_company p {
  color: #505050;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 3px;
}

.footer_bottom_socials {
  display: flex;
  margin-right: 35px;
  min-width: 142px;
  max-width: 142px;
  justify-content: space-between;
}
.footer_bottom_socials .btn {
  height: 40px;
  width: 40px;
  background: #39bcbf;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #39bcbf;
}
.footer_bottom_socials .btn svg {
  height: initial;
}
.footer_bottom_socials .btn:hover {
  background: #ffffff;
}
.footer_bottom_socials .btn:hover path {
  fill: #39bcbf !important;
}

.footer_bottom_down {
  display: flex;
}

.footer_bottom_list a {
  font-size: 13px;
  color: #505050;
  line-height: 1.5;
  margin-bottom: 2px;
  margin-right: 21px;
}
.footer_bottom_list a:hover {
  color: #39bcbf;
}

.main {
  height: calc(100vh - 115px);
  background: #39bcbf;
  min-height: 500px;
  max-height: 850px;
  background: url("/images/main.jpg") no-repeat center center/cover;
  position: relative;
}

.header_menu_logo img {
  width: 266px;
  max-width: 100%;
}

.main_box {
  position: absolute;
  bottom: 0;
  padding-bottom: 100px;
  left: 0;
  width: 100%;
  bottom: 0;
  z-index: 3;
}

.main_text {
  margin-top: 45px;
}
.main_text .btn {
  height: 60px;
  border-radius: 30px;
  padding: 0 65px;
  background: #34b9bc;
}
.main_text .btn .val {
  padding-left: 45px;
  color: #ffffff;
  display: flex;
  height: 26px;
  background: url("/images/calculate-button.svg") no-repeat left center/26px auto;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}
.main_text .btn:hover {
  background: #08898d;
}

.main_subtitle {
  padding: 0 28px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 20px;
  font-weight: 700;
  font-size: 40px;
  background: #000000;
  line-height: 40px;
  padding-bottom: 4px;
}

.main_title {
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.4;
  font-size: 48px;
  font-weight: 700;
}

.main_character_items {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-left: 80px;
}
.main_character_items .main_character_item {
  display: inline-flex;
  min-width: 340px;
  max-width: 340px;
}
.main_character_items .main_character_item:first-child {
  margin-right: auto;
  min-width: 260px;
  max-width: 260px;
  margin-right: 40px;
}
.main_character_items .main_character_item_img {
  height: 77px;
  display: flex;
  overflow: hidden;
  margin-right: 27px;
  min-width: min-content;
}
.main_character_items .main_character_item_img img {
  width: auto;
  height: 100%;
}
.main_character_items .main_character_item_content {
  flex-grow: 1;
}
.main_character_items .main_character_item_title {
  margin-bottom: 13px;
  font-size: 16px;
  text-transform: uppercase;
  color: #39bcbf;
  line-height: 1.2;
  font-weight: 700;
}

.main_character {
  padding: 85px 0 70px;
}

.main_character_df {
  display: flex;
}

.main_character_img {
  min-width: 540px;
  max-width: 540px;
}

.main_character_content {
  flex-grow: 1;
}

.main_character_headline {
  display: flex;
  padding: 0 0 30px 80px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 30px;
}
.main_character_headline .ic {
  min-width: 124px;
  max-width: 124px;
  margin-right: 28px;
}
.main_character_headline .val {
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1.6;
  font-weight: 500;
  color: #3bbdc1;
  margin-top: -8px;
}

.main_character_text {
  padding-left: 80px;
  padding-bottom: 55px;
}
.main_character_text h1,
.main_character_text .main_character_title {
  margin-bottom: 23px;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
}
.main_character_text p {
  margin-bottom: 15px;
  line-height: 1.3;
  font-size: 17px;
}

.main_character_item_text {
  font-size: 16px;
  line-height: 1.4;
}

.main_idea_df {
  display: flex;
  justify-content: space-between;
  gap: -54px;
}

.main_idea_img {
  position: relative;
}
.main_idea_img img {
  display: block;
}

.main_idea_img_text {
  position: absolute;
  z-index: 2;
  bottom: 0;
}

.main_idea_item_title {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #39bcbf;
  font-size: 34px;
  font-weight: 700;
}

.main_idea_item_subtitle {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #353535;
  font-size: 24px;
  font-weight: 700;
}

.main_idea_list {
  margin-top: 25px;
}
.main_idea_list li {
  position: relative;
  font-size: 17px;
  line-height: 1.4;
  padding-left: 16px;
}
.main_idea_list li:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 4px;
  height: 4px;
  top: 50%;
  left: 0;
  background: #39bcbf;
  margin-top: -1px;
}

.main_idea {
  padding-bottom: 65px;
}

.main_idea_slogan {
  padding-top: 45px;
  text-align: center;
}

.main_idea_slogan_title {
  text-transform: uppercase;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.main_idea_slogan_text {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 18px;
}

.main_manufacture {
  background: url("/images/bg_manufacture.jpg") no-repeat center center/cover;
  padding: 75px 0 0;
}

.main_manufacture_title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  padding-left: 60px;
  line-height: 1.4;
  padding-bottom: 45px;
}

.main_manufacture_df {
  display: flex;
}

.main_manufacture_content {
  background: #ffffff;
  padding: 30px 60px 0;
  min-width: 550px;
  max-width: 550px;
  margin-right: 70px;
}

.main_manufacture_text {
  font-size: 18px;
  line-height: 1.4;
  padding-bottom: 30px;
  border-bottom: 1px solid #e8e8e8;
}

.main_manufacture_info {
  padding-top: 30px;
  padding: 30px 0 15px;
}
.main_manufacture_info p {
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 16px;
}

.main_manufacture_links {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.main_manufacture_links .btn {
  background: #39bcbf;
  border-radius: 5px;
  height: 48px;
  display: flex;
  flex-grow: 1;
}
.main_manufacture_links .btn span {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  padding-bottom: 2px;
}
.main_manufacture_links .btn:hover {
  background: #1e9ca0;
}

.video_manuf {
  position: relative;
  width: 100%;
  height: 100%;
}
.video_manuf:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.main_manufacture_present {
  flex-grow: 1;
  height: 354px;
}

.main_manufacture_video {
  background: url("/images/video.jpg") no-repeat center center/cover;
  width: 100%;
  height: 100%;
  margin-bottom: 25px;
}

.main_manufacture_present_df {
  color: #ffffff;
  display: flex;
}

.main_manufacture_present_title {
  height: 34px;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.4;
}

.main_manufacture_present_year {
  min-width: 240px;
  max-width: 240px;
  margin-right: 50px;
}
.main_manufacture_present_year .main_manufacture_present_title {
  font-size: 40px;
}

.main_manufacture_present_subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.main_manufacture_present_text {
  font-size: 16px;
  line-height: 1.4;
  color: #c4e4e5;
}

.solutions_df {
  display: flex;
}

.solutions_sidebar {
  min-width: 420px;
  max-width: 420px;
  margin-right: 70px;
  padding-top: 35px;
  padding-left: 60px;
}

.solutions_container {
  flex-grow: 1;
}

.solutions {
  padding-top: 75px;
  padding-bottom: 35px;
}

.solutions_sidebar_title {
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
  text-transform: uppercase;
}
.solutions_sidebar_title .name {
  color: #39bcbf;
  font-size: 34px;
  margin-bottom: 5px;
}
.solutions_sidebar_title .val {
  color: #353535;
  font-size: 22px;
}

.solutions_sidebar_subtitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.4;
}

.solutions_sidebar_text {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 28px;
}

.solutions_sidebar_button {
  margin-bottom: 23px;
}
.solutions_sidebar_button .btn {
  border: 2px solid #39bcbf;
  height: 60px;
  width: 100%;
  border-radius: 30px;
}
.solutions_sidebar_button .btn .val {
  padding-left: 45px;
  color: #39bcbf;
  display: flex;
  height: 26px;
  background: url("/images/calculate-button-2.svg") no-repeat left center/26px auto;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  transition: 0.2s;
}
.solutions_sidebar_button .btn:hover {
  background: #39bcbf;
}
.solutions_sidebar_button .btn:hover .val {
  background: url("/images/calculate-button.svg") no-repeat left center/26px auto;
  color: #ffffff;
}

.solutions_sidebar_info {
  background: #f3fafa url("/images/info.svg") no-repeat 25px 22px/30px auto;
  padding: 20px 20px 20px 80px;
  font-size: 14px;
  line-height: 1.4;
  color: #808080;
  margin-bottom: 30px;
}

.solutions_sidebar_order {
  margin-bottom: 20px;
}
.solutions_sidebar_order .btn {
  border: 2px solid #39bcbf;
  height: 60px;
  width: 100%;
  border-radius: 4px;
  background: #39bcbf;
}
.solutions_sidebar_order .btn .val {
  padding-left: 45px;
  color: #ffffff;
  display: flex;
  height: 26px;
  background: url("/images/form-button.svg") no-repeat left center/21px auto;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  transition: 0.2s;
}
.solutions_sidebar_order .btn:hover {
  background: #1e9ca0;
  border: 2px solid #1e9ca0;
}

.solutions_sidebar_socials {
  display: flex;
  justify-content: space-around;
}
.solutions_sidebar_socials .btn .ic {
  min-width: 20px;
  max-width: 20px;
  margin-right: 12px;
  transition: 0.2s;
}
.solutions_sidebar_socials .btn .ic path {
  fill: #39bcbf;
}
.solutions_sidebar_socials .btn .val {
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}
.solutions_sidebar_socials .btn:hover .val {
  color: #39bcbf;
}

.solutions_headline {
  padding: 35px 60px 23px;
  border: 2px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}
.solutions_headline .name {
  text-transform: uppercase;
  color: #39bcbf;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.solutions_headline .name strong {
  color: #353535;
}
.solutions_headline .val {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.solutions_scroll {
  border: 2px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  border-top: none;
  padding: 23px 60px 20px;
  padding-right: 35px;
}
.solutions_scroll .custom_scroll {
  height: 100%;
}

.solutions_scroll_title {
  display: flex;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.solutions_scroll_title .name {
  color: #39bcbf;
  margin-right: 21px;
  position: relative;
}
.solutions_scroll_title .name:before {
  content: "";
  position: absolute;
  z-index: 1;
  right: -11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #cecece;
}

.custom_scroll_wrap {
  height: 350px;
}
.custom_scroll_wrap .mCSB_inside > .mCSB_container {
  margin-right: 10px;
}
.custom_scroll_wrap .mCSB_scrollTools {
  width: 5px;
}
.custom_scroll_wrap .mCSB_scrollTools .mCSB_draggerRail {
  background: #ebebeb;
  width: 5px;
  border-radius: 3px;
}
.custom_scroll_wrap .mCSB_scrollTools .mCSB_dragger,
.custom_scroll_wrap .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #39bcbf !important;
  border-radius: 3px;
}

.solutions_logo {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.solutions_logo .radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 20px;
}
.solutions_logo .radio + label {
  position: relative;
  cursor: pointer;
}
.solutions_logo .radio:checked + label .solutions_logo_img {
  filter: grayscale(0);
}
.solutions_logo .radio + label:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #39bcbf url("/images/checkw.svg") no-repeat center center/9px auto;
  opacity: 0;
  transition: 0.3s;
}
.solutions_logo .radio:checked + label:after {
  opacity: 1;
}

.solutions_logo_item {
  width: 150px;
  text-align: center;
  padding: 10px 0 15px;
  border: 1px solid #e1e1e1;
}
.solutions_logo_item:hover {
  border: 1px solid #39bcbf;
}
.solutions_logo_item:hover .solutions_logo_img {
  filter: grayscale(0);
}

.solutions_logo_img {
  width: 110px;
  height: 57px;
  margin: 0 auto 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  transition: 0.3s;
}
.solutions_logo_img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.solutions_logo_name {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.solutions_scroll_info {
  padding-top: 25px;
  padding-bottom: 5px;
  font-size: 14px;
  line-height: 1.4;
  color: #595959;
}
.solutions_scroll_info a {
  color: #39bcbf;
}
.solutions_scroll_info a:hover {
  color: #1e9ca0;
}

.solutions_step2_headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 60px 30px;
  border-bottom: 1px solid #ebebeb;
}
.solutions_step2_headline .solutions_scroll_title {
  margin-bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}

.select.dissabled .select_current i {
  display: inline-block;
}

.select .select_current i {
  display: none;
}

.solutions_select {
  min-width: 387px;
  max-width: 387px;
  margin-left: auto;
}
.solutions_select .select {
  position: relative;
}
.solutions_select .select.dissabled:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  z-index: 9;
  right: 0;
  bottom: 0;
}
.solutions_select .select.dissabled .select_header {
  color: #cecece;
  border: 1px solid #cecece;
}
.solutions_select .select.select_active .select_header:before {
  transform: rotate(180deg);
}
.solutions_select .select.select_active .select_body {
  display: block;
}
.solutions_select .select.select_active .select_icon {
  transform: translate(0, -50%) rotate(-90deg);
}
.solutions_select .select_header {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-right: 46px;
  height: 48px;
  font-size: 18px;
  color: #353535;
  font-weight: 500;
  border: 1px solid #cecece;
  background: #ffffff;
  padding-left: 20px;
  text-transform: uppercase;
}
.solutions_select .select_header:before {
  content: "";
  position: absolute;
  z-index: 1;
  background: url("/images/arrow-down.svg") no-repeat center center/7px auto;
  right: 20px;
  top: 50%;
  margin-top: -2px;
  width: 7px;
  height: 5px;
  transition: 0.3s;
}
.solutions_select .select_current {
  display: flex;
  align-items: center;
}
.solutions_select .select_current i {
  font-style: normal;
  margin-right: 4px;
}
.solutions_select .select_body {
  position: absolute;
  z-index: 8;
  left: 0;
  right: 0;
  top: 100%;
  display: none;
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-bottom: none;
  border-top: none;
}
.solutions_select .select_item {
  display: flex;
  flex-grow: 1;
  cursor: pointer;
  min-width: 100%;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.4;
  color: #353535;
  font-weight: 500;
  border-bottom: 1px solid #e1e1e1;
  transition: 0.3s;
}
.solutions_select .select_item:hover {
  background: #39bcbf;
  color: #ffffff;
}
.solutions_select .select_item_dis {
  display: flex;
  flex-grow: 1;
  align-items: center;
  cursor: pointer;
  transition: 0.2s;
  font-size: 15px;
  line-height: 20px;
  justify-content: center;
}

.solutions_step2 {
  border: 2px solid #ebebeb;
  border-top: none;
  border-bottom: none;
}

.solutions_result {
  border: 2px solid #ebebeb;
  border-top: none;
  padding: 30px 60px;
  background: #f9f9f9;
  display: none;
}

.solutions_result_title {
  display: flex;
  align-items: flex-end;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.solutions_result_title .name {
  font-size: 16px;
  margin-right: 7px;
}
.solutions_result_title .val {
  font-size: 20px;
  color: #39bcbf;
}

.solutions_result_subtitle {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}

.solutions_result_df {
  display: flex;
  padding-top: 21px;
  justify-content: space-between;
  gap: 26px;
}

.solutions_result_item {
  display: flex;
  width: 100%;
}
.solutions_result_item .item_img {
  min-width: 80px;
  max-width: 80px;
  margin-right: 15px;
}
.solutions_result_item .item_title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}
.solutions_result_item .item_data {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}
.solutions_result_item .item_data_box {
  display: flex;
  align-items: center;
}
.solutions_result_item .item_data_title {
  font-size: 12px;
  font-weight: 700;
  margin-right: 5px;
  text-transform: uppercase;
}
.solutions_result_item .item_data_numb {
  min-width: 32px;
  max-width: 32px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9e9e9;
  font-weight: 600;
}
.solutions_result_item .item_cost {
  display: flex;
  align-items: flex-end;
}
.solutions_result_item .item_cost .lab {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 8px;
  padding-bottom: 1px;
}
.solutions_result_item .item_cost .val {
  text-transform: uppercase;
  color: #39bcbf;
  font-size: 18px;
  font-weight: 700;
}
.solutions_result_item .item_cost .val span {
  margin-right: 4px;
}

.solutions_dop {
  margin-top: 25px;
}
.solutions_dop .solutions_select {
  min-width: 100%;
  max-width: 100%;
  position: relative;
}
.solutions_dop .solutions_dop_but .select_current {
  display: flex;
  transition: 0.3s;
  padding-bottom: 4px;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  justify-content: flex-start;
  justify-content: flex-start;
  display: flex;
  width: 100%;
  cursor: pointer;
  position: relative;
  padding-right: 46px;
  height: 48px;
  border: 1px solid #cecece;
  background: #ffffff;
  padding-left: 30px;
  text-transform: uppercase;
}
.solutions_dop .solutions_dop_but .select_current :before {
  content: "";
  position: absolute;
  z-index: 1;
  background: url(/images/arrow-down.svg) no-repeat center center/7px auto;
  right: 20px;
  top: 50%;
  margin-top: -2px;
  width: 7px;
  height: 5px;
  transition: 0.3s;
}
.solutions_dop .solutions_dop_but .select_current .text {
  border-bottom: 1px dashed #353535;
  font-size: 13px;
  color: #353535;
  font-weight: 500;
  line-height: 1.3;
}
.solutions_dop .solutions_dop_but .select_current.active :before {
  transform: rotate(180deg);
}
.solutions_dop .solutions_select .select_header {
  color: #353535;
}
.solutions_dop .solutions_select .select_header:hover .select_current {
  border-bottom: 1px dashed transparent;
}

.solutions_dop_body {
  background: #ffffff;
  position: absolute;
  z-index: 9;
  left: 0;
  width: 100%;
  top: 100%;
  padding: 20px 30px 5px;
  border: 1px solid #cecece;
  border-top: none;
  display: none;
}

.solutions_total {
  padding: 15px 60px 20px;
  background: #39bcbf;
  color: #ffffff;
  display: none;
}

.solutions_total_title {
  display: flex;
  align-items: flex-end;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.solutions_total_title .name {
  font-size: 18px;
  margin-right: 15px;
  padding-bottom: 2px;
}
.solutions_total_title .val {
  font-size: 30px;
}

.solutions_total_text {
  font-size: 12px;
}

.complect_logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}
.complect_logo:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: -1px;
  height: 1px;
  background: #dfdfdf;
}
.complect_logo img {
  display: block;
  width: 96px;
  filter: grayscale(1);
  opacity: 0.7;
}

.complect_logo_img {
  position: relative;
  z-index: 3;
  background: #ffffff;
  padding: 0 25px;
}

.complect_box {
  background: url("/images/coml1.jpg") no-repeat left 45px/539px auto;
  padding: 45px 0 30px 500px;
}

.complect_title {
  font-size: 34px;
  font-weight: 700;
  color: #39bcbf;
  line-height: 1.4;
  text-transform: uppercase;
}

.complect_subtitle {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.complect_box_bg {
  background: #ffffff;
}

.complect_text p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 15px;
}
.complect_text p strong {
  font-size: 20px;
  font-weight: 700;
}

.complect_unit {
  background: #f6f6f6;
  padding: 30px 60px 45px;
}

.complect_unit_headline {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 18px;
}
.complect_unit_headline span {
  color: #39bcbf;
}

.complect_unit_item {
  padding: 15px 20px;
  background: #ffffff;
  border-radius: 5px;
  margin-bottom: 10px;
}
.complect_unit_item .name {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  padding-left: 38px;
  position: relative;
}
.complect_unit_item .name:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 20px;
  background: #39bcbf url("/images/checkw.svg") no-repeat center center/13px auto;
  top: 50%;
  left: 0;
  margin-top: -10px;
  border-radius: 2px;
}
.complect_unit_item .val {
  padding-left: 38px;
  margin-top: 10px;
  font-size: 14px;
  color: #6f6f6f;
}

.main_model {
  padding: 50px 0;
}

.main_model_title {
  text-align: center;
  line-height: 1.4;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

.main_model_subtitle {
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
}

.main_model_text {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.main_model_filter {
  display: flex;
  justify-content: center;
}

.main_model_filter_box {
  display: flex;
  align-items: center;
}
.main_model_filter_box .checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 20px;
}
.main_model_filter_box .checkbox + label {
  height: 30px;
  border-radius: 2px;
  padding: 0 20px;
  border: 1px solid #39bcbf;
  background: #39bcbf;
}
.main_model_filter_box .checkbox + label span {
  color: #ffffff;
  padding-top: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.main_model_filter_box .checkbox + label:hover {
  background: #ffffff;
  border: 1px solid #e1e1e1;
}
.main_model_filter_box .checkbox + label:hover span {
  color: #353535;
}
.main_model_filter_box .checkbox:checked + label {
  background: #ffffff;
  border: 1px solid #e1e1e1;
}
.main_model_filter_box .checkbox:checked + label span {
  color: #353535;
}
.main_model_filter_box .radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 20px;
}
.main_model_filter_box .radio + label {
  height: 30px;
  width: 30px;
  margin-left: 5px;
  border: 1px solid #e1e1e1;
  border-radius: 2px;
  padding: 3px;
}
.main_model_filter_box .radio + label span {
  width: 100%;
  height: 100%;
}
.main_model_filter_box .radio:checked + label {
  border: 1px solid #39bcbf;
  background: #39bcbf;
}
.main_model_filter_box .btn_black span {
  background: linear-gradient(to bottom, #353535, #424242);
}
.main_model_filter_box .btn_brown span {
  background: linear-gradient(to bottom, #ae8167, #c6a38f);
}
.main_model_filter_box .btn_grey span {
  background: linear-gradient(to bottom, #767676, #9c9c9c);
}

.main_model_filter_lab {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-right: 15px;
}

.main_model_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 35px;
}
@media screen and (min-width: 1400px) {
  .main_model_list {
    width: auto;
    margin-left: -60px;
    margin-right: -60px;
  }
}

.main_model_item {
  min-width: calc(33.33% - 50px);
  max-width: calc(33.33% - 50px);
  margin-top: 25px;
  padding-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
}
.main_model_item:hover {
  opacity: 0.7;
}

.main_model_item_img {
  height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.main_model_item_img img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

.main_calculator_address .footer_top {
  border-bottom: none;
  padding-bottom: 0;
}

.number_slider {
  margin-bottom: 10px;
}
.number_slider .swiper-wrapper {
  padding: 0 40px;
  max-width: 100%;
  box-sizing: border-box;
}
.number_slider .swiper-slide {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;              /* фиксируем одинаковую высоту миниатюр */
  max-width: 220px;
  opacity: 0.7;
  overflow: hidden;
}

.number_slider .swiper-slide:hover {
  opacity: 0.9;
}

.number_slider .swiper-slide:first-child {
  flex: 0 0 180px;
  max-width: 180px;
}

.number_slider .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.number_slider .swiper-slide img {
  display: block;
  width: auto;
  height: 100%;              /* все миниатюры одинаковой высоты */
  max-width: 100%;
  object-fit: contain;       /* без обрезки */
}

.whell_sw .swiper-slide {
  height: auto;
  align-items: center;
  justify-content: center;
  display: flex;
}

.whell_sw .swiper-slide img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 500px;
}

@media screen and (max-width: 768px) {
  .number_slider .swiper-slide {
    max-width: 30%;          /* исправлено: было max: 30% */
    height: 60px;
  }
}

.main_model_item_name {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.assortment {
  padding-top: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.assortment_slogan {
  padding-left: 70px;
  line-height: 1.5;
  background: url("/images/bad.svg") no-repeat left center/46px auto;
}
.assortment_slogan .name {
  font-size: 20px;
  font-weight: 500;
}
.assortment_slogan .val {
  font-size: 16px;
}

.assortment_call {
  display: flex;
  margin-left: auto;
  align-items: center;
}
.assortment_call .solutions_sidebar_order {
  margin-bottom: auto;
  margin-top: auto;
  margin-right: 30px;
}
.assortment_call .solutions_sidebar_order .btn {
  height: 46px;
  padding: 0 45px;
  border-radius: 4px;
}
.assortment_call .solutions_sidebar_order .btn .val {
  font-size: 13px;
  background-size: 17px auto;
  padding-left: 34px;
}
.assortment_call .footer_bottom_socials .btn {
  background: #ffffff;
  min-width: 60px;
  max-width: 60px;
  height: 46px;
  margin-right: 10px;
  border-radius: 4px;
}
.assortment_call .footer_bottom_socials .btn svg {
  width: 20px;
  height: auto;
}
.assortment_call .footer_bottom_socials .btn path {
  fill: #39bcbf !important;
}
.assortment_call .footer_bottom_socials .btn:last-child {
  margin-right: 0;
}
.assortment_call .footer_bottom_socials .btn:hover {
  background: #39bcbf;
}
.assortment_call .footer_bottom_socials .btn:hover path {
  fill: #ffffff !important;
}

.main_calculator {
  background: #f6f6f6;
}

.main_calculator_headline {
  background: url("/images/mcalc1.png") no-repeat 530px 10px/684px auto;
  padding: 40px 60px;
}

.main_calculator_title {
  padding-left: 100px;
  background: url("/images/calculator.svg") no-repeat left center/67px auto;
  text-transform: uppercase;
  line-height: 1.3;
}
.main_calculator_title .name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.main_calculator_title .val {
  font-weight: 500;
  font-size: 20px;
}

.main_calculator_box_headline {
  background: #3bbdc0;
  border-radius: 8px 8px 0 0;
}
.main_calculator_box_headline span {
  padding: 20px 150px 20px 60px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
}

.main_calculator_box_before .main_calculator_box_headline span {
  background: url("/images/d1.png") no-repeat right center/110px auto;
}

.main_calculator_box_after .main_calculator_box_headline span {
  background: url("/images/d2.png") no-repeat right center/136px auto;
  padding-right: 175px;
}

.main_calculator_box_data {
  background: #ffffff;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid #39bcbf;
}

.main_calculator_df,
.main_calculator_range {
  display: flex;
  align-items: center;
  padding: 23px 60px;
}

.main_calculator_range {
  border-top: 1px solid #ebebeb;
}

.main_calculator_diametr_headline {
  display: flex;
  align-items: center;
  min-width: 220px;
  max-width: 220px;
  padding-right: 10px;
}
.main_calculator_diametr_headline .ic {
  height: 40px;
  min-width: 40px;
  max-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #39bcbf;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50%;
  margin-right: 15px;
}
.main_calculator_diametr_headline .name {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.3;
}
.main_calculator_diametr_headline .name span {
  font-weight: 700;
  display: block;
  margin-top: 5px;
}

.main_calculator_radios {
  display: flex;
  padding: 17px 26px;
  border-radius: 4px;
  border: 1px solid #ebebeb;
  align-items: center;
  flex-grow: 1;
}
.main_calculator_radios .radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 20px;
}
.main_calculator_radios .radio + label {
  position: relative;
  padding: 0 0 0 27px;
  cursor: pointer;
  line-height: 18px;
  font-size: 18px;
  font-weight: 500;
  margin-right: 21px;
}
.main_calculator_radios .radio + label:last-child {
  margin-right: 0;
}
.main_calculator_radios .radio + label:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: 50%;
  transition: 0.2s;
  box-sizing: border-box;
}
.main_calculator_radios .radio:checked + label:after {
  border: 5px solid #39bcbf;
}

.range_df {
  display: flex;
  align-items: center;
}

.range_current {
  align-items: center;
  display: flex;
  margin-right: 25px;
  min-width: 70px;
  max-width: 70px;
  height: 40px;
  justify-content: center;
  font-size: 21px;
  font-weight: 700;
  background: #f6f6f6;
  border-radius: 3px;
}
.range_current span {
  margin-right: 2px;
}

.range_slider_df {
  display: flex;
  align-items: center;
}
.range_slider_df .tit {
  font-size: 18px;
  font-weight: 500;
}

.range_slider_input {
  min-width: 345px;
  max-width: 345px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  position: relative;
  height: 25px;
  margin-left: 12px;
  margin-right: 12px;
}
.range_slider_input input {
  background: transparent;
  -webkit-appearance: none;
  outline: none;
  height: 1px;
}
.range_slider_input input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 40px;
  border-radius: 3%;
  background: url("/images/rth.png") no-repeat left center/20px auto;
  cursor: pointer;
  position: relative;
  z-index: 9;
}

.range_slider_input_metre {
  position: absolute;
  top: 50%;
  height: 1px;
  background: #ececec;
  z-index: 1;
  left: 10px;
  right: 10px;
  margin-top: -1px;
  display: flex;
  justify-content: space-between;
}
.range_slider_input_metre span {
  width: 1px;
  height: 25px;
  background: #ececec;
  transform: translate(0, -50%);
}
.range_slider_input_metre span:nth-child(even) {
  height: 17px;
}

.range_slider_info {
  margin-left: auto;
  font-size: 14px;
  color: #6a6a6a;
}

.main_calculator_range_box {
  flex-grow: 1;
}

.main_calculator_dop {
  background: #ffffff;
  padding: 23px 60px 8px;
  position: relative;
  border-bottom: 1px solid #ebebeb;
  display: flex;
  align-items: flex-start;
}
.main_calculator_dop:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -8px;
  height: 8px;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, #ebebeb, transparent);
}
.main_calculator_dop .main_calculator_diametr_headline {
  min-width: 330px;
  max-width: 330px;
}
.main_calculator_dop .main_calculator_diametr_headline .ic {
  background: #353535;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1;
  padding-bottom: 5px;
  font-weight: 700;
}

.main_calculator_dop_checks {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.main_calculator_dop_checks .checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 20px;
}
.main_calculator_dop_checks .main_calculator_dop_checks_item {
  display: flex;
  min-width: 240px;
  max-width: 240px;
  margin-right: 70px;
  margin-bottom: 18px;
}
.main_calculator_dop_checks .main_calculator_dop_checks_item:nth-child(even) {
  margin-right: 0;
}
.main_calculator_dop_checks .main_calculator_dop_checks_item .info {
  position: relative;
}
.main_calculator_dop_checks .main_calculator_dop_checks_item .info_ic {
  min-width: 16px;
  max-width: 16px;
  margin-left: 10px;
  cursor: pointer;
}
.main_calculator_dop_checks .main_calculator_dop_checks_item .info_ic:hover path {
  fill: #39bcbf !important;
}
.main_calculator_dop_checks .main_calculator_dop_checks_item .info_box {
  position: absolute;
  left: 50%;
  bottom: 100%;
  background: #ffffff;
  font-size: 13px;
  line-height: 1.3;
  width: 300px;
  margin-left: -150px;
  border-radius: 3px;
  border: 1px solid #cccccc;
  margin-bottom: 24px;
  z-index: 99;
  display: none;
  opacity: 0;
  transition: opacity 0.2s;
  font-weight: 500;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
}
.main_calculator_dop_checks .main_calculator_dop_checks_item .info_box:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid #cccccc;
  bottom: -7px;
  left: 50%;
  margin-left: 0px;
  background: #ffffff;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
  transform: rotate(45deg);
  z-index: 4;
}
.main_calculator_dop_checks .main_calculator_dop_checks_item .info_box:after {
  content: "";
  position: absolute;
  z-index: 5;
  background: #ffffff;
  bottom: 0;
  left: 1px;
  right: 1px;
  height: 8px;
}
.main_calculator_dop_checks .main_calculator_dop_checks_item .info_box .text {
  padding: 12px 23px 18px;
  font-size: 13px;
  line-height: 1.4;
}
.main_calculator_dop_checks .main_calculator_dop_checks_item .info_box.active {
  display: block;
  opacity: 1;
}
.main_calculator_dop_checks .checkbox + label {
  position: relative;
  padding: 0 0 0 36px;
  cursor: pointer;
  display: flex;
  white-space: nowrap;
  align-items: center;
}
.main_calculator_dop_checks .checkbox + label .text {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.main_calculator_dop_checks .checkbox + label:after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  background-position: center center;
  border: 1px solid #d5d5d5;
  transition: 0.2s;
  border-radius: 3px;
}
.main_calculator_dop_checks .checkbox:checked + label:after {
  background: #39bcbf url("/images/checkw.svg") no-repeat center center/12px auto;
  border: 1px solid #39bcbf;
}

.main_calculator_dop_button .btn {
  padding: 0 37px;
  border-radius: 4px;
  background: #39bcbf;
  height: 52px;
}
.main_calculator_dop_button .btn span {
  color: #ffffff;
  padding-left: 40px;
  line-height: 22px;
  background: url("/images/calculate-button.svg") no-repeat left center/22px auto;
  font-size: 15px;
  font-weight: 700;
}
.main_calculator_dop_button .btn:hover {
  background: #1e9ca0;
}

.main_calculator_result_total_info {
  font-size: 12px;
  line-height: 1.4;
  color: #585858;
}

.main_calculator_result_df {
  display: flex;
  background: #ffffff;
  padding: 27px 60px;
}
.main_calculator_result_df .solutions_result_item .item_cost .val {
  background: #39bcbf;
  color: #ffffff;
  height: 28px;
  align-items: center;
  display: flex;
  padding: 0 12px;
  position: relative;
  top: 6px;
}
.main_calculator_result_df .solutions_result_item .item_data_numb {
  font-weight: 700;
}
.main_calculator_result_df .solutions_result_item .item_cost .lab {
  margin-right: 12px;
}
.main_calculator_result_df .solutions_result_df {
  gap: 80px;
  padding-top: 0;
}

.main_calculator_box_data,
.main_calculator_dop,
.main_calculator_result_df {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}

.main_calculator_result_left {
  min-width: 700px;
  max-width: 700px;
  margin-right: 70px;
}

.main_calculator_result_total_title {
  font-size: 20px;
  font-weight: 700;
  color: #39bcbf;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 10px;
}

.main_calculator_result_total_cost {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.main_calculator_result_total_cost .name {
  padding: 0 30px;
  height: 48px;
  align-items: center;
  display: flex;
  color: #ffffff;
  font-weight: 700;
  background: #39bcbf;
  font-size: 28px;
  margin-right: 22px;
  white-space: nowrap;
}
.main_calculator_result_total_cost .val {
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 500;
  max-width: 90px;
}

.main_calculator_result_dop {
  margin-top: 25px;
  padding-left: 30px;
  display: flex;
  min-height: 16px;
  align-items: flex-end;
  background: url("/images/plus.svg") no-repeat left center/16px auto;
  text-transform: uppercase;
}
.main_calculator_result_dop .name {
  font-size: 14px;
  font-weight: 700;
  margin-right: 10px;
}
.main_calculator_result_dop .val {
  font-size: 14px;
  font-weight: 700;
  color: #39bcbf;
}

.main_calculator_result,
.main_calculator_address {
  background: #f6f6f6;
}

.main_calculator_address {
  padding: 40px 0 30px;
}
.main_calculator_address .footer_address {
  min-width: initial;
  max-width: initial;
}
.main_calculator_address .footer_call_phones {
  margin-bottom: 0;
  margin-top: -5px;
}
.main_calculator_address .header_menu_socials .btn {
  height: 30px;
  width: 30px;
  background: #ffffff;
  border: 1px solid transparent;
}
.main_calculator_address .header_menu_socials .btn:hover {
  border: 1px solid #39bcbf;
}
.main_calculator_address .header_menu_socials {
  padding-bottom: 0;
  padding: 0;
  margin-left: 10px;
}
.main_calculator_address .footer_call_phones .phones_numb:nth-child(3):before {
  display: none;
}
.main_calculator_address .header_menu_socials .btn .ic {
  margin-right: auto;
  margin-left: auto;
  min-width: 16px;
  max-width: 16px;
}
.main_calculator_address .footer_address_item .lab {
  padding-left: 35px;
}
.main_calculator_address .footer_address_item .mame {
  padding-left: 35px;
  position: relative;
}
.main_calculator_address .footer_address_item .mame:before {
  content: "";
  position: absolute;
  z-index: 1;
  background: #39bcbf url("/images/telegram.svg") no-repeat center center/9px auto;
  width: 20px;
  height: 20px;
  bottom: 0;
  left: 0;
  border-radius: 3px;
}
.main_calculator_address .footer_call_phones,
.main_calculator_address .footer_top .lab {
  padding-left: 35px;
}
.main_calculator_address .footer_call_phones {
  position: relative;
}
.main_calculator_address .footer_call_phones:before {
  content: "";
  position: absolute;
  z-index: 1;
  background: #39bcbf url("/images/telegram.svg") no-repeat center center/9px auto;
  width: 20px;
  height: 20px;
  bottom: 5px;
  left: 0;
  border-radius: 3px;
}

.what {
  background: #282828 url("/images/swhat.png") no-repeat center calc(100% - 30px)/1580px auto;
  padding: 60px 0 55px;
}
.what .solutions_sidebar_order .btn {
  height: 50px;
}
.what .solutions_sidebar_order .btn .val {
  font-size: 13px;
  padding-left: 35px;
  background-size: 18px auto;
}
.what .solutions_sidebar_order {
  margin-bottom: 15px;
}
.what .header_menu_socials {
  padding: 0;
}
.what .header_menu_socials .btn .val {
  color: #ffffff;
}
.what .header_menu_socials .btn path {
  fill: #ffffff !important;
}
.what .header_menu_socials .btn:hover {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.what .header_menu_socials .btn:hover path {
  fill: #39bcbf !important;
}
.what .header_menu_socials .btn:hover .val {
  color: #353535;
}

.what_headline {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 60px;
}
.what_headline .name {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  margin-right: 30px;
  white-space: nowrap;
}
.what_headline .val {
  font-size: 18px;
  line-height: 1.4;
  padding-left: 47px;
  min-height: 32px;
  background: url("/images/infog.svg") no-repeat left center/27px auto;
  color: #cecece;
}

.what_box {
  display: flex;
  gap: 48px;
  padding: 0 60px;
}

.what_item .ic {
  font-size: 100px;
  font-weight: 700;
  color: #3e3e3e;
}

.what_item_title {
  position: relative;
  z-index: 1;
  margin-top: -20px;
  color: #ffffff;
  margin-bottom: 17px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.what_item_text {
  padding-bottom: 10px;
}
.what_item_text p {
  font-size: 15px;
  line-height: 1.4;
  color: #e9e9e9;
  margin-bottom: 15px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.gallery_item {
  min-width: 25%;
  max-width: 25%;
  position: relative;
}
.gallery_item:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}
.gallery_item:hover .gallery_box {
  opacity: 1;
}
.gallery_item:hover:before {
  opacity: 1;
}

.gallery_box {
  position: absolute;
  left: 23px;
  bottom: 20px;
  right: 23px;
  opacity: 0;
  transition: 0.3s;
  z-index: 9;
}

.gallery_item_title {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.gallery_item_text {
  line-height: 1.3;
  font-size: 12px;
  color: #c5c5c5;
}

.gallery_headline {
  text-transform: uppercase;
  color: #ffffff;
  position: absolute;
  left: 50%;
  white-space: nowrap;
  height: 60px;
  z-index: 85;
  top: 40px;
  transform: translate(-50%, 0);
  background: #282828;
  display: flex;
  align-items: center;
  padding: 0 55px;
  font-size: 24px;
  font-weight: 700;
}

.garanty {
  padding: 40px 0 45px;
}
.garanty .solutions_sidebar_socials {
  padding: 0 65px;
  gap: 15px;
}
.garanty .solutions_sidebar_socials .btn {
  height: 50px;
  border: 1px solid #39bcbf;
  border-radius: 25px;
  flex-grow: 1;
}
.garanty .solutions_sidebar_socials .btn:hover {
  background: #1e9ca0;
  border: 1px solid #1e9ca0;
}
.garanty .solutions_sidebar_socials .btn:hover path {
  fill: #ffffff !important;
}
.garanty .solutions_sidebar_socials .btn .ic {
  min-width: 16px;
  max-width: 15px;
  margin-right: 0;
}

.garanty_df {
  display: flex;
  gap: 60px;
}

.garanty_left {
  min-width: 490px;
  max-width: 490px;
}

.garanty_img {
  margin-bottom: 10px;
}

.garanty_link {
  padding: 0 65px;
  margin-bottom: 17px;
}
.garanty_link .btn {
  background: #39bcbf;
  height: 60px;
  border-radius: 30px;
  width: 100%;
}
.garanty_link .btn .val {
  color: #ffffff;
  transition: 0.3s;
  padding-left: 40px;
  background: url("/images/informerw.svg") no-repeat left center/22px auto;
  min-height: 22px;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.garanty_link .btn:hover {
  background: #1e9ca0;
}

.garanty_title {
  display: inline-flex;
  height: 64px;
  padding: 0 30px;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  background: #39bcbf;
  align-items: center;
  margin-top: 35px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.garanty_text {
  padding-bottom: 15px;
}
.garanty_text p {
  margin-bottom: 11px;
  line-height: 1.4;
  font-size: 16px;
}

.garanty_subtitle {
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.3;
  font-size: 20px;
  font-weight: 700;
}

.garanty_list {
  display: flex;
  gap: 36px;
}

.garanty_list_left {
  min-width: 323px;
  max-width: 323px;
}

.garanty_item {
  padding: 20px 30px;
  background: #f6f6f6;
  margin-bottom: 15px;
}
.garanty_item .name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.garanty_item .val p {
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 10px;
}
.garanty_item .val p:last-child {
  margin-bottom: 0;
}

.disks {
  background: url("/images/disks.jpg") no-repeat center center/cover;
}

.disks_df {
  display: flex;
  padding: 40px 0 55px;
}

.disks_box {
  min-width: 550px;
  max-width: 550px;
  margin-left: auto;
  margin-right: 0;
}

.disks_title {
  font-size: 22px;
  text-transform: uppercase;
  color: #39bcbf;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}

.disks_subtitle {
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
  font-size: 34px;
  text-transform: uppercase;
  font-weight: 700;
}

.disks_text {
  color: #e4e4e4;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 30px;
}

.disks_link .btn {
  height: 60px;
  background: #39bcbf;
  padding-left: 35px;
  padding-right: 25px;
  border-radius: 5px;
}
.disks_link .btn .name {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  margin-right: 7px;
}
.disks_link .btn .val {
  height: 30px;
  display: inline-flex;
  padding: 0 11px;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  margin-right: 23px;
  background: #000000;
  border-radius: 2px;
  padding-bottom: 1px;
  transition: 0.3s;
}
.disks_link .btn .ic {
  display: flex;
  height: 30px;
  min-width: 30px;
  max-width: 30px;
  border-radius: 2px;
  background: #ffffff;
  padding: 10px;
  transition: 0.3s;
}
.disks_link .btn:hover {
  background: #1e9ca0;
}
.disks_link .btn:hover .val {
  background: #39bcbf;
}
.disks_link .btn:hover .ic {
  background: #000000;
}
.disks_link .btn:hover path {
  fill: #ffffff !important;
}

.modal {
  position: fixed;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding-bottom: 20px;
  display: none;
}
.modal.active {
  display: flex;
}

.modal_dialog {
  max-width: 96%;
  margin-top: 20px;
  background-color: #ffffff;
  margin-bottom: auto;
  position: relative;
}

.whell .modal_dialog {
  padding: 55px 35px;
  width: 880px;
  border-radius: 8px;
}
.whell .close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  padding: 0;
  border: none;
  z-index: 9;
}
.whell .close:hover {
  cursor: pointer;
}
.whell .close:hover path {
  fill: black !important;
}

.modal_whell_img {
  margin-bottom: 55px;
}

.modal_whell_lab {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #969696;
  margin-bottom: 8px;
  padding-top: 10px;
}

.modal_whell_name {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}

.modal_dialog {
  border-radius: 8px;
  overflow: hidden;
}

.modal_garant .modal_dialog {
  width: 880px;
}
.modal_garant .close {
  position: absolute;
  right: 27px;
  top: 20px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  padding: 0;
  border: none;
}
.modal_garant .close path {
  fill: #ffffff !important;
}
.modal_garant .close:hover {
  cursor: pointer;
}
.modal_garant .close:hover path {
  fill: black !important;
}

.modal_garant_headline {
  background: #39bcbf;
  color: #ffffff;
  padding-right: 70px;
  padding: 27px 70px;
  font-size: 28px;
  font-weight: 700;
}

.modal_thanks .modal_dialog,
.modal_send .modal_dialog {
  width: 570px;
}
.modal_thanks .modal_garant_headline,
.modal_send .modal_garant_headline {
  padding-left: 45px;
  font-size: 24px;
  padding-top: 37px;
  padding-bottom: 37px;
  background: #39bcbf url("/images/modhead.png") no-repeat center center/auto 100%;
}
.modal_thanks .close,
.modal_send .close {
  position: absolute;
  right: 27px;
  top: 20px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  padding: 0;
  border: none;
}
.modal_thanks .close path,
.modal_send .close path {
  fill: #ffffff !important;
}
.modal_thanks .close:hover,
.modal_send .close:hover {
  cursor: pointer;
}
.modal_thanks .close:hover path,
.modal_send .close:hover path {
  fill: black !important;
}

.textbox_wrap {
  padding: 25px 35px 25px 70px;
}

.textbox {
  padding-right: 30px;
}
.textbox p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 15px;
}
.textbox a {
  color: #39bcbf;
  display: inline-block;
  padding: 0 3px;
}
.textbox a:hover {
  background: #39bcbf;
  color: #ffffff;
}
.textbox strong,
.textbox b {
  font-weight: 500;
}
.textbox h2 {
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.textbox h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.textbox h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}
.textbox h6 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
}
.textbox ul {
  padding-bottom: 5px;
}
.textbox ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}
.textbox ul li:before {
  content: "";
  position: absolute;
  z-index: 1;
  height: 1px;
  background: #39bcbf;
  top: 8px;
  width: 11px;
  left: 0;
  line-height: 1.3;
}

.textbox_wrap {
  height: 650px;
}
.textbox_wrap .custom_scroll {
  height: 100%;
}
.textbox_wrap .mCSB_inside > .mCSB_container {
  margin-right: 10px;
}
.textbox_wrap .mCSB_scrollTools {
  width: 5px;
}
.textbox_wrap .mCSB_scrollTools .mCSB_draggerRail {
  background: #ebebeb;
  width: 5px;
  border-radius: 3px;
}
.textbox_wrap .mCSB_scrollTools .mCSB_dragger,
.textbox_wrap .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #39bcbf !important;
  border-radius: 3px;
}

.thanks_box {
  padding: 30px 45px 40px;
  background: #28a9ac;
}

.thanks_text {
  color: #ffffff;
  line-height: 1.4;
  font-size: 18px;
  margin-bottom: 22px;
}

.thanks_link .btn {
  border-bottom: 1px dashed #66e5e8;
  color: #66e5e8;
}
.thanks_link .btn:hover {
  border-bottom: 1px dashed #ffffff;
  color: #ffffff;
}

.send_wrap {
  padding: 25px 50px 35px;
}

.send_wrap_control {
  margin-bottom: 20px;
}
.send_wrap_control.inp_mask {
  min-width: 185px;
  max-width: 185px;
  margin-left: 32px;
}
.send_wrap_control .lab {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.send_wrap_control .lab span {
  display: inline-block;
  margin-left: 4px;
  color: #39bcbf;
}
.send_wrap_control input,
.send_wrap_control textarea {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #c6dada;
  transition: 0.2s;
  font-size: 16px;
  height: 44px;
  padding: 0 15px;
  font-family: "DINPro", Tahoma, sans-serif;
  font-weight: 500;
}
.send_wrap_control input:focus,
.send_wrap_control textarea:focus {
  border: 1px solid #28a9ac;
}
.send_wrap_control textarea {
  padding: 10px 15px;
  line-height: 1.4;
  resize: none;
  height: 150px;
}

.send_wrap_df {
  display: flex;
}

.send_recaptcha {
  margin-bottom: 24px;
}
.send_recaptcha > img {
  max-width: 325px;
}

.send_agree {
  margin-bottom: 20px;
}
.send_agree .checkbox + label {
  position: relative;
  padding: 0 0 0 30px;
  cursor: pointer;
  align-items: center;
  font-size: 14px;
  line-height: 1.35;
  display: inline-block;
}
.send_agree .checkbox + label .text {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
}
.send_agree .checkbox + label a {
  color: #39bcbf;
}
.send_agree .checkbox + label a:hover {
  color: #1e9ca0;
}
.send_agree .checkbox + label:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 0px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  background-position: center center;
  border: 1px solid #d5d5d5;
  transition: 0.2s;
  border-radius: 3px;
}
.send_agree .checkbox:checked + label:after {
  background: #39bcbf url("/images/checkw.svg") no-repeat center center/8px auto;
  border: 1px solid #39bcbf;
}
.send_agree .checkbox {
 position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 20px;
  width:10px;
}

.send_end {
  display: flex;
  align-items: center;
}

.send_end_button {
  min-width: 280px;
  max-width: 280px;
  margin-right: 35px;
}
.send_end_button .btn {
  height: 58px;
  border-radius: 5px;
  width: 100%;
  background: #39bcbf;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
}
.send_end_button .btn:hover {
  background: #1e9ca0;
}

.send_end_info {
  font-size: 12px;
  line-height: 1.4;
}
.send_end_info span {
  color: #39bcbf;
}

.main_idea_img_text {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 20px 30px;
  left: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
  color: #ffffff;
  line-height: 1.3;
}
.main_idea_img_text span {
  color: #39bcbf;
  margin-left: 4px;
  margin-right: 4px;
  display: inline-block;
}

.footer_call_phones_df {
  display: flex;
  align-items: center;
}

.main_calculator_result {
  display: none;
}
.cookie-popup {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 99999;
  width: 360px;
  max-width: calc(100vw - 40px);
  box-sizing: border-box;
}

.cookie-popup[hidden] {
  display: none !important;
}

.cookie-popup__box {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-sizing: border-box;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.cookie-popup__text {
  margin: 0 0 14px;
  color: #222222;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 400;
}

.cookie-popup__text a {
  color: #42babf;
  text-decoration: none;  
}

.cookie-popup__text a:hover {
  text-decoration: underline;
}

.cookie-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 33px;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
  appearance: none;
  transition: all 0.2s ease;
}

.cookie-popup__btn:hover {
  opacity: 0.96;
}

.cookie-popup__btn:active {
  transform: translateY(1px);
}

.cookie-popup__btn--accept {
  background: #42babf;
  color: #ffffff;
  border: none;
}

.cookie-popup__btn--decline {
  background: #eeeeee;
  color: #111111;
  border: none;
}

.cookie-popup__btn:focus-visible,
.cookie-popup__text a:focus-visible {
  outline: 2px solid rgba(45, 140, 255, 0.35);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .cookie-popup {
  left: 10px;
  bottom: 10px;
  width: 300px;
  max-width: calc(100vw - 20px);
  }

  .cookie-popup__box {
  border-radius: 14px;
  padding: 12px 12px 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  }

  .cookie-popup__text {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.35;
  }

  .cookie-popup__actions {
  gap: 7px;
  }

  .cookie-popup__btn {
  min-height: 30px;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 7px;
  }
}

@media (max-width: 420px) {
  .cookie-popup {
  left: 8px;
  bottom: 8px;
  width: auto;
  max-width: calc(100vw - 16px);
  }

  .cookie-popup__box {
  padding: 10px 10px 9px;
  }

  .cookie-popup__text {
  font-size: 11px;
  line-height: 1.32;
  margin-bottom: 9px;
  }

  .cookie-popup__btn {
  min-height: 28px;
  font-size: 11px;
  }
}
.anchor-offset {
  scroll-margin-top: 250px;
}
.anchor-offset::before {
  content: "";
  display: block;
  height: 250px;
  margin-top: -250px;
  visibility: hidden;
  pointer-events: none;
}