@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
} 
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans-VariableFont_wdth\,wght.ttf") format("truetype");
  font-style: normal;
} 

/* 1. Убираем отступы, паддинги, и границы у всех элементов */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  
}

html {
        scroll-behavior: smooth;
}

/* 2. Наследуем семейство шрифтов */
body {
  line-height: 1;
  font-family: "OpenSans";
  background-color: #EEEEEE;
  color: var(--bg_black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Manrope";
    color: #000;
}

p {
    font-family: "OpenSans";
    font-size: 20px;
    line-height: 110%;
}

/* 3. Убираем списки по умолчанию */
ul,
ol {
  list-style: none;
}

/* 4. Убираем стили у ссылок */
a {
  text-decoration: none;
  color: var(--text_white);
  /* color: inherit; */
}

/* 5. Убираем стили у таблиц */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 6. Убираем курсив у address и стили формы */
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

/* 7. Уравниваем стили кнопок и форм */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

/* 8. Убираем особенности img */
img {
  width: 100%;
  height: auto;
  display: block;
}

.container {
  /* max-width: 1680px; */
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1vw;
}

.btn {
    border-radius: 24px;
    background-color: #FF7400;
    display: flex;
    align-items: center;
    padding: 20px 23px;
    font-size: 20px;
    width: fit-content;
    color: #fff;
    justify-content: center;
    transition: all .5s;
    cursor: pointer;
}

.btn.white {
    background-color: #fff;
    color: #000;
}

h2 {
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 60px;
}

h4 {
    font-size: 26px;
    font-weight: 600;
}

section {
    margin-top: 100px;
}

section.crumbs {
    margin: 0;
}

.bread__crumbs {
    color: #C9C9C9;
    font-size: 16px;
    transition: all .5s;
    
    display: flex;
    gap: 4px;
}

.bread__crumbs a {
    /* padding: 0 4px; */
    transition: all .5s;
    color: #C9C9C9;
}

.bread__crumbs a:hover {
    color: #FF7400;
}

/*header*/

.pages header .logo.logo_mob {
    display: none;
}

header {
    padding-top: 40px;
    padding-bottom: 32px;
}
header .logo {
    display: none;
}

.pages header .logo {
    display: block;
}

header .header_wrapper {
    display: flex;
    align-items: center;
}

header .nav {
    display: flex;
}

header .nav a {
    font-size: 18px;
    font-weight: 400;
    color: #090909;
    transition: all .45s;
    border-radius: 24px;
    padding: 10px 20px;
    text-wrap: nowrap;
}

header .nav a:hover {
    background-color: #fff;
    color: #FF7400;
    transition: all .45s;
}

header .social {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 10px;
}

header .social a {
    transition: all .45s;
}

header .social a:hover path {
    fill: #FF7400;
    transition: all .45s;
}

header .social .phone{
    margin-right: 8px;
}

.header_burger {
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  background: transparent;
  cursor: pointer;
  z-index: 9999;
}

.header_burger span {
  background-color: #090909;
  display: block;
  height: 2px;
  left: calc(50% - 13px);
  position: absolute;
  top: calc(50% - 1px);
  transform-origin: 50% 50%;
  transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
  width: 26px;
  border-radius: 10%;
}

.header_burger span::before,
.header_burger span::after {
  background-color: #090909;
  border-radius: 10%;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transform-origin: 50% 50%;
  transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
  width: 26px;
}

.header_burger span::before {
  top: 7px;
}

.header_burger span::after {
  top: -7px;
}

.header_burger.active span {
  background-color: transparent;
  transition: background 0.2s ease-out;
}

.header_burger.active span::before {
    background-color: #000;
  top: 0;
  transform: rotate3d(0, 0, 1, -45deg);
}

.header_burger.active span::after {
    background-color: #000;
  top: 0;
  transform: rotate3d(0, 0, 1, 45deg);
}

.mobile-menu {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px;
  background: #fff;
  position: fixed;
  top: 10px;
  left: 0;
  width: 98%;
  height: fit-content;
  z-index: 9000;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 16px;
  margin: 0 1vw;
}

.mobile-menu a {
  color: #000;
  text-decoration: none;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 400;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  display: flex;
}

.mobile-menu .logo {
    margin-left: 0;
}

.mobile-menu .social {
    margin-left: 0;
}

.mobile-menu .btn {
    margin-bottom: 0;
    color: #fff;
    width: 100%;
}

.mobile-menu li:last-child {
    width: 100%;
}


/*banner*/

section.banner {
    margin-top: 40px;
}

.banner .banner_wrapper {
    position: relative;
}
.banner h1 {
    position: absolute;
    font-weight: 600;
    font-size: 56px;
    bottom: 90px;
    color: #fff;
    margin-left: 80px;

}
.banner .btn {
    position: absolute;
    bottom: 0;
    right: 0;
}
.banner svg {
    position: absolute;
}

.banner .banner_wrapper .mob {
    display: none;
}


/*working*/

.working_wrapper {
    display: flex;
    gap: 30px;
}

.working_wrapper .left {
    width: calc(60% - 15px);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.working_wrapper .right {
    width: calc(40% - 15px);
}

.working_wrapper .working_item {
    border-radius: 24px;
    padding: 20px;
    position: relative;
    display: flex;
}

.working_wrapper .working_item:nth-child(2), .working_wrapper .working_item:nth-child(3) {
    display: flex;
    flex-direction: column;
    width: calc(50% - 15px);
    gap: 20px;
    background-color: #D9D9D9;
    transition: all .5s;
}

.working_wrapper .working_item:nth-child(3) {
    position: relative;
}

.working_wrapper .working_item:nth-child(3):after {
    display: none;
    
    position: absolute;
    content: '';
    top: 25px;
    right: 25px;
    width: 17px;
    height: 17px;
    background: url('../../../uploads/working_item_icon.svg') center no-repeat;
    background-size: cover;
}

.working_wrapper .working_item .info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.working_wrapper .working_item .btn {
    margin-top: auto;
}

.working_wrapper .working_item h3 {
    font-size: 48px;
    font-weight: 500;
}

.working_wrapper .working_item h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.working_wrapper .working_item img {
    max-width: 100%;   
    transition: all .45s;
}

.working_wrapper .working_item:hover img {
    scale: 1.1;
    transition: all .45s;
}

.working_wrapper .working_item:nth-child(1) img {
    max-width: 100%;
    right: -60px;
    bottom: -20px;
    position: relative;
}
.working_wrapper .working_item:nth-child(3) img {
    position: relative;
    right: -20px;
}

.working_wrapper .working_item:nth-child(3):hover img {
    right: -4px !important;
}

.working_wrapper .working_item:nth-child(1):hover img {
    bottom: -2px !important
}

.working_wrapper .working_item:nth-child(2):hover,
.working_wrapper .working_item:nth-child(3):hover{
    background-color: #fff;
}

.working_wrapper .working_item:nth-child(2):hover .btn.white,
.working_wrapper .working_item:nth-child(3):hover .btn.white {
    background-color: #FF7400;
    color: #fff;
}

.working_wrapper .working_item:nth-child(1) {
    width: 100%;
    background-color: #fff;
    background-image: url(../images/vinbg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 390px;
    height: 390px;
}

.working_wrapper form {
    border-radius: 24px;
    background-color: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.working_wrapper form h3 {
    font-size: 48px;
    font-weight: 500;
    /* margin-bottom: 24px; */
}

.working_wrapper form .desc {
    margin-bottom: 10px;
}

.working_wrapper form input, .working_wrapper form textarea {
    background-color: #F7F7F7;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 10px;
    padding-left: 20px;
    transition: all .5s;
}

.working_wrapper form input:focus, .working_wrapper form textarea:focus {
    border: 2px solid #FF7400;
}

.working_wrapper form textarea {
    height: 128px;
}

.working_wrapper form .btn {
    width: 100%;
}

.working_wrapper form label input {
    display: none;
}

.working_wrapper form label {
    display: flex;
    gap: 10px;
    font-size: 16px;
}

.toggle-switch {
    width: 50px;
    height: 20px;
    background-color: #ccc;
    border-radius: 10px;
    position: relative;
    transition: background-color 0.3s;
    cursor: pointer;
}

.toggle-switch .slider {
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: -2px;
    left: 0;
    transition: transform 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .slider {
    transform: translateX(26px);
}

.toggle-switch.active {
    background-color: #FF7400;
}

/*about*/

.about_wrapper.desc {
    display: flex;
    gap: 30px;
}

.about_wrapper.mob {
    display: none;
}

.about_wrapper .text {
    width: calc(60% - 15px);
    background-image: url(../images/abutbgtext.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px;
    position: relative;
    height: auto;
}

.about_wrapper .text h4 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 500;
}

.about_wrapper .text p + p {
    margin-top: 5px;
}



.about_wrapper .text .btn {
    position: absolute;
    bottom: 0;
    right: 0;
}

.about_wrapper img {
    width: calc(41.5% - 15px);
}

.benefits .benefits_wrapper, .parts .parts_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    transition: all .45s;
}



/* .benefits .benefits_wrapper .benefits_item, .parts .parts_wrapper .parts_item {
    position: relative;
    width: calc(33% - 20px);
    width: 23%;
    padding: 20px;
    transition: all .45s;
} */

.benefits .benefits_wrapper .benefits_item {
    position: relative;
    width: calc(33% - 20px);
    padding: 20px;
    transition: all .45s;
}

.pages .benefits .benefits_wrapper .benefits_item {
    position: relative;
    width: 23%;
    padding: 20px;
    transition: all .45s;
}

.pages .benefits.club .benefits_wrapper .benefits_item {
    position: relative;
    width: calc(33% - 20px);
    padding: 20px;
    transition: all .45s;
}



.parts .parts_wrapper .parts_item {
    width: calc(50% - 20px);
    transition: all .45s;
    
    position: relative;
    /* width: 23%; */
    padding: 20px;
    transition: all .45s;
}

.benefits .benefits_wrapper .benefits_item .count, .parts .parts_wrapper .parts_item .icon {
    position: absolute;
    top: -10px;
    right: -15px;
    border-radius: 50%;
    background-color: #fff;
    font-size: 26px;
    font-weight: 600;
    padding: 15px 20px;
    transition: all .45s;
}

.pages .cooperation.whyus .benefits_item {
    width: calc(33% - 20px);
}

.parts .parts_wrapper .parts_item .icon {
    top: -6px;
    right: -11px;
    padding: 37px;
}

.benefits .benefits_wrapper .benefits_item svg, .parts .parts_wrapper .parts_item svg {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    transition: all .45s;
    width: 100%;
    height: auto;
}

.parts .parts_wrapper .parts_item .icon svg {
    top: 26px;
    right: 10px;
    width: auto;
}

.benefits .benefits_wrapper .benefits_item h4, .benefits .benefits_wrapper .benefits_item p, .parts .parts_wrapper .parts_item h4, .parts .parts_wrapper .parts_item p, .parts .parts_wrapper .parts_item img, .parts .parts_wrapper .parts_item a {
    position: relative;
    z-index: 1;
}

.benefits .benefits_wrapper .benefits_item h4, .parts .parts_wrapper .parts_item h4 {
    margin-bottom: 20px;
}
.benefits .benefits_wrapper .benefits_item p, .parts .parts_wrapper .parts_item p {
    font-size: 20px;
}

.parts .parts_wrapper .parts_item p {
    max-width: 488px;
}

.benefits .benefits_wrapper .benefits_item:hover .count, .parts .parts_wrapper .parts_item:hover .icon{
    color: #fff;
    background-color: #FF7400;
    transition: all .45s;
}

.benefits .benefits_wrapper .benefits_item:hover path, .parts .parts_wrapper .parts_item:hover path {
    transition: all .45s;
    fill: #fff;
}

.parts .parts_wrapper .parts_item:hover .btn {
    background-color: #FF7400;
    transition: all .45s;
    color: #fff;
}

.parts .parts_wrapper .parts_item {
    display: flex;
}

.parts .parts_wrapper .parts_item .info {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 364px;
}

.parts .parts_wrapper .parts_item .info a {
    margin-top: auto;
}

.parts .parts_wrapper .parts_item img {
    width: 50%;
    bottom: 0;
    right: 0;
    height: 226px;
    position: absolute;
    transition: all .45s;
}

.parts .parts_wrapper .parts_item:hover img {
    scale: 1.1;
    transition: all .45s;
    bottom: 20px;
    right: 16px;
}

/*categories*/

.popular_cat .category_wrapper {
    display: flex;
    gap: 30px;
}

.popular_cat .category_wrapper .category_item {
    width: calc(25% - 15px);
    background-color: #D9D9D9;
    padding: 20px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    max-height: 350px;
    gap: 25px;
    transition: all .45s;
}

.popular_cat .category_wrapper .category_item h3 {
    font-size: 20px;
    font-weight: 500;
}

.popular_cat .category_wrapper .category_item a {
    width: 100%;
    transition: all .45s;
}

.popular_cat .category_wrapper .category_item img {
    max-width: 160px;
    max-height: 150px;
    margin: 0 auto;
    transition: all .45s;
}

.popular_cat .category_wrapper .category_item:nth-child(2) img {
    max-width: 130px;
}

.popular_cat .category_wrapper .category_item:hover {
    background-color: #fff;
    transition: all .45s;
}

.popular_cat .category_wrapper .category_item:hover .btn {
    background-color: #FF7400;
    color: #fff;
    transition: all .45s;
}

.popular_cat .category_wrapper .category_item:hover img {
    scale: 1.1;
    transition: all .45s;
}

/*privilegii*/

.privilegii {
    background: linear-gradient(94.1deg, #1A1A1A 27.57%, #2D2D2D 103.87%);
    padding: 40px 0;
    position: relative;
}

.privilegii .info {
    width: 35%;
}

.privilegii h4 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
}

.privilegii p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #fff;
}

.privilegii img {
    position: absolute;
    width: 550px;
    height: 379px;
    right: 15%;
    bottom: 0;
}

/*question*/

.questions {
    padding-bottom: 110px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.questions .question_wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.question_item {
    background-color: #D9D9D9;
    width: 100%;
    padding: 34px 28px;
    border-radius: 20px;
    transition: all .45s;
    transition: all .45s;
}

.question_item-open {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .45s;
}

.question_item.active {
    background-color: #FF7400;
    transition: all .45s;
}

.question_item p {
    color: #fff;
    transition: all .45s;
}

.question_item.active h3 {
    transition: all .45s;
    color: #fff;
}

.question_item-open svg {
    transform: rotate(0);
    transition: transform 0.45s ease;
    flex-shrink: 0;
}

.question_item.active svg {
    transform: rotate(-180deg);
    transition: transform 0.45s ease;
}

.question_item.active path {
    stroke: #fff;
}

.question_item-content {
    padding-top: 20px;
}

.question_item h3 {
    font-size: 32px;
    font-weight: 500;
}

/*footer*/
 footer .footer_wrapper-top {
    background-color: #090909;
 }

 footer .line {
    width: 100%;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    height: 64px;
    background-color: #EEEEEE;
    position: relative;
    top: -1px;
 }

 .footer_wrapper-top {
    color: #fff;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: relative;
    z-index: 2;

    top: 40px;
 }

  .footer_wrapper-top .container {
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding: 46px 1vw 28px 1vw;
  }

 .footer_wrapper-top .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
 }

  .footer_wrapper-top .top img {
    width: 302px;
    height: 48px;
  }

 .footer_wrapper-top .top .nav {
    display: flex;
    gap: 40px;
    align-items: center;
 }

 .footer_wrapper-top .top .nav li {
    transition: all .45s;
  }

  .footer_wrapper-top .top .nav li:hover {
    color: #FF7400;
    transition: all .45s;
  }

 .footer_wrapper-top .bottom {
    display: flex;
    align-items: center;
    gap: 78px;
 }

 .footer_wrapper-top .bottom .address {
    width: 25%;
    font-family: "Manrope";
 }
 
  .footer_wrapper-top .bottom .address p {
      font-family: "Manrope";
      margin-top: 10px;
  }

 .footer_wrapper-top .bottom .working {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: "Manrope";
 }

 .footer_wrapper-top .bottom .social {
    margin-left: auto;
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 20px;
 }

 .footer_wrapper-top .bottom .social .phome {
    margin-right: 8px;
 }

 .footer_wrapper-top .bottom .social svg path{
    transition: all .45s;
 }

 .footer_wrapper-top .bottom .social svg:hover path {
    fill: #FF7400;
    transition: all .45s;
 }

 .footer_wrapper-bottom {
    background-color: #505050;
    z-index: 1;
    position: relative;
    height: fit-content;
}

 .footer_wrapper-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 80px 1vw 40px 1vw;
 }

 .footer_wrapper-bottom a, .footer_wrapper-bottom p {
    transition: all .45s;
    color: #969696;
 }

 .footer_wrapper-bottom a:hover {
    color: #fff;
    transition: all .45s;
 }

 .footer_wrapper-bottom .left, .footer_wrapper-bottom .right {
    display: flex;
    flex-direction: column;
    gap: 10px;
 }


 /*catalog*/

.form .working_wrapper h3 {
    font-size: 48px;
    color: #fff;
}

.form .working_wrapper p {
    color: #fff;
}

.form .working_wrapper {
    background-color: #000;
    border-radius: 40px;
}

.form .working_wrapper .left {
    padding: 40px 60px 0 60px;
}

.form .working_wrapper form, .form.cooperation .working_wrapper .right {
    border-radius: 37px;
    position: relative;
    right: -1px;
}

.form.cooperation .working_wrapper .right {
    background-color: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form.cooperation .working_wrapper form {
    width: 100%;
    border-radius: 0;
    position: relative;
    right: 0;
}


/*catalog*/

.catalog p {
    width: 50%;
}

.catalog .catalog_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.catalog .catalog_wrapper .catalog_item {
    width: calc(50% - 15px);
    border-radius: 40px;
    padding: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 630px;
}

.catalog_wrapper .catalog_item .btn {
    width: 100%;
    transition: all .45s;
}

.catalog .catalog_wrapper .catalog_item h3 {
    color: #fff;
}

.catalog .catalog_wrapper .catalog_item:hover .btn {
    background-color: #FF7400;
    transition: all .45s;
    color: #fff;
}


/*about pages*/

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

.pages .about_wrapper .text {
    width: calc(58% - 15px);
    background-image: unset;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #fff;
    border-radius: 40px;
    padding: 40px;
    position: relative;
    height: auto;
}

.pages .about_wrapper .text.second {
    width: 100%;
}


.pages .benefits_item {
    background-color: #D9D9D9;
    border-radius: 24px;
    height: 340px;
    display: flex;
    flex-direction: column;
}

.benefits.whyus .benefits_wrapper .benefits_item p {
    font-size: 16px;
}

.pages .benefits_item a {
    margin-top: auto;
    position: relative;
    z-index: 2;
    font-size: 15px;
    padding: 10px;
}

.pages .benefits_item a:hover {
    background-color: #FF7400;
    color: #fff;
}

.pages .benefits_item img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 170px;
    max-height: 200px;
}

.pages .benefits_item:nth-child(2) img {
    max-height: 220px;
} 

.practice_wrapper, .practice_wrapper .left, .practice_wrapper .right {
    display: flex;
    gap: 30px;
}

.practice_wrapper .left, .practice_wrapper .right {
    width: calc(50% - 15px);
}

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

.practice_wrapper .left h2 {
    margin-bottom: 0;
}

.practice_item {
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.practice_item h3 {
    font-size: 64px;
    margin-top: auto;
}

.practice_item h4 {
    font-size: 32px;
}

.right .practice_item:nth-child(1),
.right .practice_item:nth-child(1) h3, 
.right .practice_item:nth-child(1) h4,
.right .practice_item:nth-child(1) p,
.left .practice_item,
.left .practice_item h3,
.left .practice_item h4,
.left .practice_item p {
    color:#fff;
    position: relative;
    z-index: 3;
}

.right .practice_item:nth-child(1) {
    background-color: #FF7400;
}

.right .practice_item:nth-child(2), 
.right .practice_item:nth-child(2) h3, 
.right .practice_item:nth-child(2) h4,
.right .practice_item:nth-child(2) p {
    color: #000;
}

.right .practice_item:nth-child(2) {
    background-color: #fff;
}

.left .practice_item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 363px;
}

.left .practice_item::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 24px;
}

.right .practice_item {
    overflow: hidden;
}

.right .practice_item:nth-child(1), .right .practice_item:nth-child(2) {
    position: relative;
}

.right .practice_item:after{
    position: absolute;
    top: -60px;
    right: -140px;
    font-size: 324px;
    font-family: 'Manrope';
    font-weight: bold;
    content: '';
}

.right .practice_item:nth-child(2):after {
    content: '30';
    color: #00000026;
}

.right .practice_item:nth-child(1):after {
    content: '20';
    color: #EB6000;
}

.formNews_wrapper {
    border-radius: 40px;
    
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 640px;
    position: relative;
}

.formNews_wrapper form {
    background-color: #fff;
    border-radius: 20px;
    padding: 32px;
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 100%;
    max-width: 740px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: auto;
}

.formNews_wrapper form .bottom {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.mail_input_wrapper {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.formNews_wrapper form input {
    background-color: #F7F7F7;
    border-radius: 20px;
    padding: 10px 20px;
    width: 100%;
    height: 100%;
}

.formNews_wrapper form .politic {
    display: flex;
    gap: 15px;
}

.formNews_wrapper form .politic input {
    display: none;
}

.formNews_wrapper form h3 {
    font-size: 48px;
}

/*category*/


.category .container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.filter_wrapper {
    width: calc(30% - 15px);
    background-color: #fff;
    border-radius: 40px;
    padding: 40px;
    height: fit-content;
}

.filter_wrapper .remove {
    color: #A4A4A4;
    font-size: 16px;
}

.product_wrapper {
    width: calc(70% - 15px);
}

.filter_block {
    margin-bottom: 20px;
}

.filter_block label {
  display: flex;
    padding: 8px 0;
    cursor: pointer;
    align-items: center;
}

.filter_block.check label {
  border-bottom: unset;
  padding: 0;
  color: #fff;
  font-weight: 200;
  letter-spacing: 0.8px;
}

.filter_block label:last-child {
  border-bottom: unset;
}

.filter_block input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  margin-right: 10px;
  vertical-align: middle;
  /* background-color: #FFFFFF99; */
  background-color: #D9D9D9;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

.filter_block input[type="checkbox"]:checked {
  background-color: #FF7400;
}


.filter_blocks [type='checkbox'],
.filter_block [type='radio'] {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  border: 0;
  -webkit-transition: 0.334s;
  transition: 0.334s;
  background: #f0f0f0;
  cursor: pointer;
}

.filter_block [type='checkbox']:after,
.filter_block [type='radio']:after {
  content: '';
  position: absolute;
  z-index: 20;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  -webkit-transition: 0.334s;
  transition: 0.334s;
  -webkit-transform: translate(-50%, -50%) rotate(180deg) scale(0);
  transform: translate(-50%, -50%) rotate(180deg) scale(0);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.filter_block [type='radio']:checked {
    border: 1px solid #FF7400;
}

.filter_block [type='checkbox']:checked:after,
.filter_block [type='radio']:checked:after {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.filter_block [type='checkbox'] {
  border-radius: 2px;
}

.filter_block [type='checkbox']:after {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.1665 3.47831C16.4746 3.17514 16.8934 3.00319 17.3311 3.00004C17.769 2.9969 18.1902 3.16282 18.5029 3.46154C18.8156 3.76026 18.9943 4.16749 18.9999 4.59423C19.0055 5.02097 18.8376 5.43253 18.5328 5.73896L9.71539 16.4841C9.56391 16.6431 9.38112 16.7707 9.17792 16.8593C8.97474 16.9479 8.75532 16.9956 8.53279 16.9997C8.31023 17.0038 8.08914 16.9641 7.88266 16.8831C7.6762 16.802 7.48859 16.6812 7.33108 16.5279L1.48502 10.8314C1.17436 10.5284 0.999895 10.1176 1 9.6892C1.00011 9.26082 1.17478 8.85004 1.48558 8.5472C1.79639 8.24436 2.21788 8.07431 2.65733 8.07441C3.09677 8.0745 3.51819 8.24477 3.82884 8.54775L8.53279 12.9419L16.1226 3.52874C16.1366 3.51141 16.1516 3.49493 16.1676 3.47941L16.1665 3.47831Z' fill='white'/%3E%3C/svg%3E%0A");
}

.filter_block [type='radio'] {
  border-radius: 50%;
  border: 2px solid #FF7400;
  background: transparent;
}

.filter_block [type='radio']:after {
  background: #FF7400;
  border: 1px solid #FF7400;
  border-radius: 50%;
}

.filter_block .wrap {
    display: flex;
    padding-bottom: 20px;
    gap: 15px;
}

.filter_block .wrap input {
    border: 1px solid #D5D5D5;
    border-radius: 9px;
    padding: 4px;
    padding-left: 12px;
    width: calc(50% - 10px);
    margin-left: 5px;
}

.filter_block .radio_item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.filter_block h3 {
    margin-bottom: 15px;
    font-size: 26px;
}

.sort_dropdown {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 10px;
    border-radius: 4px;
    background-color: #fff;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
    width: fit-content;
    cursor: pointer;
}

.sort_dropdown .arrow {
    transition: all .45s;
    transform: rotate(0);
}

.sort_dropdown .dropdown {
    opacity: 0;
    visibility: hidden;
    transition: all .45s;
    position: absolute;
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: #fff;
    border-radius: 4px;
    top: 44px;
    left: 0;
    z-index: 2;
}

.sort_dropdown.active .arrow {
    transition: all .45s;
    transform: rotate(180deg);
}

.sort_dropdown.active .dropdown {
    opacity: 1;
    visibility: visible;
    transition: all .45s;
}

.product_wrapper {
    width: calc(70% - 15px);
}

.product_items {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.product_item {
    border-radius: 40px;
    background-color: #fff;
    padding: 20px;
    display: flex;
    gap: 30px;
}

.product_item .products_img {
    width: 33%;
    overflow: hidden;
}

.product_item h3 {
    font-size: 26px;
    margin-bottom: 25px;
}

.product_item .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.product_item .swiper-pagination-bullet-active {
  background: #FF7400;
}

.product_item .swiper-slide {
    padding-bottom: 30px;
}

.product_item .products_info {
    display: flex;
    flex-direction: column;
}

.product_item .products_info .btn {
    width: 100%;
    margin-top: 28px;
    background-color: #000;
    transition: all .45s;
}

.product_item:hover .products_info .btn {
    background-color: #FF7400;
    transition: all .45s;
}

.product_item .price_option {
    display: flex;
    align-items: center;
    margin-top: auto;
    margin-bottom: 15px;
}

.product_item .price_option .option {
    margin-left: auto;
}

.product_item .price_option .option .mod_wrapper {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product_item .price, .product_item .price span {
    font-family: "Manrope";
    font-size: 36px;
    font-weight: 600;
}
.product_item .price {
    margin-right: 32px;
}

.product_item .old_price, .product_item .old_price span {
    font-family: "OpenSans";
    font-size: 16px;
    font-weight: 400;
    color: #A4A4A4;
}


.product_item .price_option .option label {
    border: 1px solid #E4E4E4;
    width: 64px;
    height: 35px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.product_item .price_option .option .mod_wrapper [type='radio']:checked + label {
    border: 2px solid #FF7400;
}

.product_wrapper .more {
    border-radius: 12px;
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 20px;
}

.product_wrapper .pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.product_wrapper .pagination .page_num {
    border: 1px solid #E4E4E4;
    padding: 5px 9px;
    border-radius: 50%;
    cursor: pointer;
}

.product_wrapper .pagination .page_num.none {
    border: unset;
}

.product_wrapper .pagination .page_num.active {
    border: 1px solid #FF7400;
}

.product_item .btn span {
    display: block;
}

.product_item .btn svg{
    display: none;
}


/*goods*/

.product-gallery {
  /* max-width: 320px; */
  margin: 0 auto;
  width: calc(42% - 15px);
}

.main-slider {
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 10px;
    background: #fff;
    padding: 20px;
}

.main-slider img {
  width: 100%;
  display: block;
}

.thumbs-slider {
  box-sizing: border-box;
  padding: 5px 0;
}

.thumbs-slider .swiper-slide {
  width: 25%;
  opacity: 0.5;
  cursor: pointer;
  transition: 0.45s;
  border-radius: 10px;
  background-color: #00000033;
}

.thumbs-slider .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #FF7400;
  border-radius: 10px;
  background-color: #fff;
  transition: 0.45s;
}

.thumbs-slider img {
  width: 100%;
  border-radius: 8px;
}

.good_wrapper {
    display: flex;
    gap: 30px;
}

.product_info {
    display: flex;
    flex-direction: column;
    width: calc(58% - 15px);
}

.product_info .tabs__nav {
    display: flex;
    gap: 10px;
}

.product_info .tabs__link {
    border: 2px solid #A4A4A4;
    transition: 0.45s;
    border-radius: 24px;
    padding: 12px 20px;
}

.product_info .tabs__link.tabs__link_active {
    border: 2px solid #FF7400;
    transition: 0.45s;
    border-radius: 24px;
}

.product_info .tabs__pane {
    display: none;
}

.product_info .tabs__pane.tabs__pane_show {
    display: block;
}

.product_info h1 {
    font-size: 36px;
}

.product_info .btn {
    width: 100%;
}

/*cooperation*/

.cooperation h1 {
    position: relative;
    color: #000;
    bottom: 0;
    margin-left: 0;
    font-size: 60px;
    margin-bottom: 40px;
}

.cooperation .banner_wrapper {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.cooperation .banner_wrapper .text {
    width: calc(50% - 15px);
}
.cooperation .banner_wrapper .text li {
    margin-left: 20px;
}
.cooperation .banner_wrapper .img {
    border-radius: 40px;
    width: calc(43% - 15px);
    
}
.cooperation .banner_wrapper img {
    object-fit: cover;
    height: 100%;
    border-radius: 40px;
}

.parts.cooperation .parts_wrapper .parts_item .icon svg {
    top: 0;
    right: 0;
}

.parts.cooperation .parts_wrapper .parts_item h4, .parts.cooperation .parts_wrapper .parts_item .desc {
    width: 90%;
}

.parts.cooperation .parts_wrapper .parts_item img {
    height: auto;
}

.pages .cooperation.whyus .benefits_item img {
    max-width: 70%;
    z-index: 2;
}

.pages .cooperation.whyus .benefits_item:nth-child(2) img {
    max-width: 100%;
}

.pages .cooperation.whyus .benefits_item {
    position: relative;
    overflow: hidden;
}

.pages .cooperation.whyus .benefits_item::after {
    position: absolute;
    bottom: -100px;
    left: 0;
    font-size: 324px;
    font-family: 'Manrope';
    font-weight: bold;
    color: #0000004D;
}


.pages .cooperation.whyus .benefits_item:nth-child(1)::after {
    content: '1';
}
.pages .cooperation.whyus .benefits_item:nth-child(2)::after {
    content: '2';
}
.pages .cooperation.whyus .benefits_item:nth-child(3)::after {
    content: '3';
}

.pages .cooperation.business .benefits_item {
    width: calc(25% - 30px);
    overflow: hidden;
    
    height: 410px;
}

.pages .cooperation.business .benefits_item img {
    max-width: 100%;
    max-height: 100%;
}

.pages .cooperation.business .benefits_item:nth-child(1) img {
    left: 0;
}

.pages .cooperation.business .benefits_item:nth-child(2) img {
    right: 0;
}

.pages .cooperation.business .benefits_item:nth-child(3) img {
    width: 190px;
}

.pages .cooperation.business .benefits_item:nth-child(4) img {
    right: -100px;
}

.form.cooperation .working_wrapper .left {
    padding: 0;
    width: calc(50% - 15px);
}

.form.cooperation .working_wrapper .left img {
    border-radius: 40px;
    object-fit: cover;
}

.form .working_wrapper .right {
    width: calc(50% - 15px);
}

.form .working_wrapper .right form {
    width: 100%;
}

.form.cooperation .working_wrapper {
    background-color: transparent;
}

.form.cooperation .working_wrapper h3, .form.cooperation .working_wrapper p {
    color: #000;
}


/*club*/

.club .banner_wrapper .text {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.club .banner_wrapper .text img {
    position: absolute;
    right: -80px;
    bottom: -60px;
    width: 426px;
    height: 260px;
    z-index: -1;
}

.club .banner_wrapper .text .btn {
    margin-top: auto;
    position: relative;
}

.club .banner_wrapper .img {
    border-radius: 40px;
    width: calc(50% - 15px);
}

.pages .club.cooperation.whyus .benefits_item:nth-child(2) img {
    max-width: 100%;
    bottom: -40px;
    right: -100px;
}

.quize .quize_wrapper {
    background-color: #fff;
    border-radius: 40px;
}

.quize img {
    border-radius: 40px;
    max-height: 600px;
}
.btn.grey {
    background-color: #D9D9D9;
}

.quize .questions {
    padding: 60px 40px 40px 40px;
}

.quize .questions .quize_progressBar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 52px;
}

.quize .questions .quize_progressBar .quize_pages  {
    margin-left: auto;
    width: fit-content;
    display: block;
}

.quize .questions .quize_progressBar .progress_bar {
    height: 10px;
    width: 100%;
    background-color: #D9D9D9;
    border-radius: 100px;
}

.quize .questions .quize_item .bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 52px;
}

.quize .questions .quize_item .title {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
    flex-direction: row;
    
    height: 0;
    margin: 0;
}

.quize .questions .quize_item .filter_block {
    height: 0;
    margin: 0;
}

.quize .questions .quize_item.active .title {
    margin-bottom: 40px;
    height: auto;
}

.quize .questions .quize_item .title p {
    height: 0;
}

.quize .questions .quize_item.active .title p {
    height: auto;
}

.quize .questions .quize_item.active .filter_block {
    height: auto;
    margin-bottom: 20px;
}

.quize .questions .quize_item .bottom {
    height: 0;
    margin: 0;
}

.quize .questions .quize_item.active .bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 52px;
    height: auto;
}

.quize_item.working_wrapper form {
    border-radius: 24px;
    background-color: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 0;
    padding: 0;
}

.quize_item.active.working_wrapper form {
    /* padding: 32px; */
    height: auto;
}

.quize .questions .quize_item .title p {
    font-size: 32px;
    font-family: "Manrope";
}

.quize .questions .quize_item .title .num {
    border-radius: 50%;
    background-color: #FF7400;
    color: #fff;
    font-size: 20px;
    padding: 4px 8px;
}

.quize .questions .quize_item .radio_item {
    border-radius: 20px;
    border: 2px solid #D9D9D9;
    padding: 10px 18px;
    font-size: 20px;
}

.quize .questions .quize_item .radio_item + .radio_item {
    margin-top: 10px;
}

.filter_block .radio_item:has([type="radio"]:checked)  {
    border: 2px solid #FF7400;
}

.quize_item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: none;
  height: 0;
}

.quize_item.active {
  opacity: 1;
  transform: translateY(0);
  display: block;
  height: fit-content;
}

.quize_item.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}

.quize_progressBar .progress_bar {
  position: relative;
  width: 100%;
  height: 10px;
  background: #f2f2f2;
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}

.quize_progressBar .bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #FF7400;
  width: 0;
  transition: width 0.4s ease;
  border-radius: 100px;
}

/* .answers.error {
  animation: shake 0.3s ease;
  border: 1px solid #ff4d00;
  border-radius: 8px;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
} */

.quize_item form .title {
    flex-direction: column;
    align-items: flex-start !important;
}

.quize_item form .title .desc {
    font-size: 20px;
}

.contacts .banner_wrapper .text {
    overflow: visible;
}

.contacts .banner_wrapper .text img {
    position: absolute;
    right: 0px;
    bottom: -60px;
    width: 310px;
    height: 290px;
    z-index: 2;
}


.textpage h1 {
    font-size: 64px;
    font-weight: 500;
    width: 80%;
}

.textpage .title {
    position: relative;
    background-color: #fff;
    border-radius: 40px;
    padding: 55px 80px;
}

.textpage .title img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 350px;
    height: 420px;
}

.content p {
    margin-bottom: 10px;
}
.content h4 {
    margin: 12px 0;
    display: flex;
    align-items: center;
}
.content h4 span {
    color: #fff;
    border-radius: 100px;
    padding: 4px 8px;
    margin-right: 6px;
    background-color: #FF7400;
    font-size: 14px;
}

body.error {
    height: 100vh;
    position: relative;
}

body.error::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100vh;
    width: 85vw;
    background-image: url(../images/errorBG.png);
    background-repeat: no-repeat;
    z-index: 0;
}

.error main, .error header {
    position: relative;
    z-index: 1;
}

.error header svg {
    margin: 0 auto;
    display: block;
}

.error h1 {
    text-align: center;
    margin-bottom: 25px;
}

.error p {
    text-align: center;
}

.error .bottom {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.error footer {
    margin-top: 100px;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.error .errorImg {
    height: 22vw;
}
.error .errorImg img {
    object-fit: contain;
    height: 100%;
}

.error .domkrat {
    width: 38vw;
    height: 33vw;
    position: absolute;
    bottom: -90px;
    right: 0;
}

.about_wrapper .text p {
    font-size: 16px;
    line-height: 1;
}

.jGrowl.top-right {
    right: 0;
    top: 6%;
}

.error_feedback_home {
    text-align: center;
}


/*adaptive*/


@media(max-width: 1600px) {
    .error .domkrat {
        width: 34vw;
        height: 29vw;
    }
}

@media(max-width: 1340px) {
    .benefits .benefits_wrapper .benefits_item svg, .parts .parts_wrapper .parts_item svg{
        top: 0;
        right: 0;
        width: 100%;
        height: auto;
    }
    .parts .parts_wrapper .parts_item .icon svg {
        top: 26px;
        right: 10px;
        width: 70%;
    }
    .benefits .benefits_wrapper .benefits_item .count {
        top: 10px;
        right: 10px;
        font-size: 22px;
        font-weight: 600;
        padding: 10px 15px;
    }
    .parts .parts_wrapper .parts_item img {
        right: 0;
        bottom: 10px;
    }
    .parts .parts_wrapper .parts_item:hover img {
        right: 8px;
    }
    .parts .parts_wrapper .parts_item .icon {
        top: 0;
        right: 0;
        padding: 37px;
    }

    .parts .parts_wrapper .parts_item {
        width: calc(50% - 15px);
    }

    .about_wrapper .text p {
        font-size: 1.3vw;
    }
    
    .about_wrapper .text p + p {
        margin-top: 0.7vw;
    }

    .about_wrapper .text h4 {
        font-size: 2vw;
    }
    .parts.cooperation .parts_wrapper .parts_item .icon svg {
        width: 100%;
    }
}

@media(max-width: 1300px) {
    .banner .btn {
        width: 16vw;
        font-size: 1.4vw;
        height: 4.5vw;
        padding: 0;
    }
    .banner svg {
        width: 26vw;
        height: 7vw;
    }

    .club .btn {
        width: fit-content;
        font-size: 16px;
        height: auto;
        padding: 20px;
    }
    .parts_item .desc {
        max-width: 480px;
    }
    .about_wrapper .text {
        width: 60vw;
        height: 33vw;
        padding: 2vw;
    }
}

@media(max-width: 1250px) {
    .benefits .benefits_wrapper .benefits_item h4 {
        font-size: 20px;
        width: 89%;
    }
    .benefits .benefits_wrapper .benefits_item p {
        font-size: 16px;
    }
    .parts .parts_wrapper .parts_item .info {
        height: 29vw;
    }
    .parts .parts_wrapper .parts_item img {
        width: 19vw;
        height: 14.2vw;
        bottom: 20px;
    }
    .privilegii img {
        right: 0;
    }
    .cooperation h1 {
        font-size: 50px;
    }
    .parts.cooperation .parts_wrapper .parts_item img {
        width: 17vw;
    }
}

@media(max-width: 1200px) {
    .working_wrapper .working_item:nth-child(1) img {
        max-width: 40%;
        bottom: -108px;
        height: 75%;
    }
    .working_wrapper form label {
        gap: 20px;
    }
    .toggle-switch {
        width: 68px;
    }
    .working_wrapper .working_item:nth-child(1):hover img {
        bottom: -92px !important;
    }
    .benefits .benefits_wrapper .benefits_item .count, .parts .parts_wrapper .parts_item .icon {
        top: 0;
        right: 0;
    }
    header .nav a {
        padding: 12px 16px;
    }

    .contacts .banner_wrapper .text img {
        position: absolute;
        right: 0px;
        bottom: -30px;
        width: 200px;
        height: 200px;
        z-index: 2;
    }

    .textpage h1 {
        font-size: 54px;
    }

    .error .domkrat {
        display: none;
    }
    
    body.error {
        display: flex;
        flex-direction: column;
    }

    .error footer {
        margin-top: auto;
    }
    
    .working_wrapper .working_item h4 {
        max-width: 200px;
    }
}

@media(max-width: 1150px) {
    .parts .parts_wrapper .parts_item .icon {
        padding: 30px;
    }
    .parts .parts_wrapper .parts_item .icon svg {
        top: 20px;
        right: 7px;
        width: 70%;
    }
    .parts .parts_wrapper .parts_item .info a, .popular_cat .category_wrapper .category_item a {
        font-size: 14px;
        padding: 10px 15px;
    }
    .about_wrapper .text .btn {
        font-size: 16px;
        padding: 14px 23px;
    }
    .cooperation .banner_wrapper .img {
        width: calc(50% - 15px);
    }
}

@media(max-width: 1100px) {
    header .nav a {
        font-size: 16px;
    }
    header .social .phone {
        font-size: 16px;
    }
    .catalog .catalog_wrapper .catalog_item {
        height: 47vw;
    }
    .textpage .title img {
        width: 270px;
        height: 320px;
    }
}

@media(max-width: 1050px) {
    .pages header .nav a {
        padding: 12px;
    }
    .pages header .nav a, .pages header .social .phone {
        font-size: 14px;
    }
}

@media(max-width: 1024px) {
    h2 {
        font-size: 44px;
    }
    .working_wrapper .working_item h3 {
        font-size: 38px;
    }
    .working_wrapper form h3 {
        font-size: 38px;
        margin-bottom: 14px;
    }
    .working_wrapper {
        flex-direction: column;
    }
    .working_wrapper .left, .working_wrapper .right {
        width: 100%;
    }
    .working_wrapper .working_item:nth-child(1) img {
        bottom: -18px;
        height: 100%;
        right: -10px;
    }
    .toggle-switch {
        width: 48px;
    }
    .working_wrapper .working_item:nth-child(1):hover img {
        bottom: -2px !important;
    }
    .benefits .benefits_wrapper .benefits_item {
        width: 100%;
        height: 220px;
        max-width: 410px;
    }
    .benefits .benefits_wrapper, .parts .parts_wrapper {
        justify-content: center;
    }
    .banner h1 {
        font-size: 40px;
    }
    .form .working_wrapper {
        gap: 0;
    }
    .catalog p {
        width: 100%;
    }
    .form .working_wrapper form.right {
        right: 0;
        width: 100%;
    }

    .pages .benefits .benefits_wrapper .benefits_item {
        height: 330px;
    }
    .pages .cooperation.business .benefits_item:nth-child(3) img {
        width: 110px;
    }
    .form.cooperation .working_wrapper .left {
        width: 100%;
    }
    .form.cooperation .working_wrapper form {
        width: 100%;
        top: -40px;
    }

    .form.cooperation .working_wrapper .left img {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    .form.cooperation .working_wrapper .right {
        width: 100%;
        top: -40px;
        right: 0;
    }
    
    .form.cooperation .working_wrapper .right form {
        top: 0;
        padding: 0;
    }
    
    .benefits .benefits_wrapper .benefits_item p, .parts .parts_wrapper .parts_item p {
        font-size: 14px;
    }
}

@media(max-width: 1000px) {
    .parts .parts_wrapper .parts_item .icon {
        display: none;
    }
    .parts .parts_wrapper .parts_item svg {
        display: none;
    }
    .parts .parts_wrapper .parts_item {
        background-color: #D9D9D9;
        border-radius: 40px;
    }
    .parts .parts_wrapper .parts_item:hover {
        background-color: #fff;
    }
    .footer_wrapper-top .top .nav {
        gap: 20px;
    }
    .club .banner_wrapper .text {
        position: absolute;
        z-index: 2;
        bottom: -130px;
    }

    .club .banner_wrapper .text .desc {
        width: 60%;
    }

    .club .banner_wrapper .img, .club .banner_wrapper .text {
        width: 100%;
    }

    section.benefits.club {
        margin-top: 200px;
    }

    .contacts .banner_wrapper {
        flex-direction: column;
    }
    .contacts .banner_wrapper .text {
        position: relative;
        bottom: 0;
    }
    #map {
        width: 100% !important;
    }
    #map2 {
        width: 100% !important;
    }
}

@media(max-width: 980px) {
    header .nav a {
        padding: 8px 16px;
    }
}

@media(max-width: 950px) {
    .about_wrapper .text .btn {
        padding: 13px;
    }
    .practice_item h3 {
        font-size: 44px;
    }
    .practice_item h4 {
        font-size: 22px;
    }
    .practice_item p {
        font-size: 16px;
    }

    .product_item {
        gap: 10px;
    }
    .product_item .products_img {
        width: 50%;
    }
    .product_item h3 {
        font-size: 18px;
    }

    .product_item .price, .product_item .price span {
        font-size: 22px;
    }

    .product_item .price_option .option label {
        width: 44px;
        height: 25px;
        font-size: 12px;
    }

    .product_item .price_option .option .mod_wrapper {
        gap: 5px;
    }

    .filter_block .wrap {
        flex-direction: column;
    }
    .filter_block .wrap input {
        width: 100%;
    }
    .product_info h1 {
        font-size: 26px;
    }

    .parts.cooperation .parts_wrapper .parts_item img {
        width: 15vw;
    }
    .parts.cooperation .parts_wrapper .parts_item .info {
        height: 32vw;
    }

    .pages .cooperation.business .benefits_item {
        width: calc(33% - 30px);
    }
    
    .product_item .old_price {
        font-family: "Manrope";
        margin-bottom: 20px;
    }
}

@media(max-width: 900px) {
    header .nav a, header .social .phone {
        font-size: 14px;
    }
    .popular_cat .category_wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
    .popular_cat .category_wrapper .category_item {
        width: calc(33.33% - 20px);
    }
    .privilegii img {
        width: 400px;
        height: 275px;
    }
    .footer_wrapper-top .top {
        flex-direction: column;
        gap: 20px;
    }
    .banner h1 {
        bottom: 50px;
        margin-left: 40px;
    }
    .cooperation h1 {
        bottom: 0;
        margin-left: 0;
    }
    .error .errorImg {
        height: 42vw;
    }
    body.error::after {
        width: 100%;
    }
    .pages .benefits .benefits_wrapper .benefits_item {
        width: 42vw;
    }
}

@media(max-width: 850px) {
    .working_wrapper .working_item:nth-child(1) img {
        max-width: 35%;
        bottom: -89px;
        height: 80%;
        right: -10px;
    }
    .working_wrapper .working_item:nth-child(1):hover img {
        bottom: -75px !important;
    }
    .question_item h3 {
        font-size: 22px;
    }
    header .nav a {
        display: none;
    }
    .header_burger {
        display: flex;
    }
    header .logo {
        display: block;
        margin-left: 7px;
    }
    
    header .logo.logo_mob {
        display: none;
    }
    
    .pages header .logo {
        display: none;
    }
    
    .pages header .logo.logo_mob {
        display: block;
    }
    .pages header .logo {
        margin-left: 0;
    }
    header {
        padding-top: 20px;
        padding-bottom: 19px;
    }
    header .header_wrapper {
        background: #fff;
        border-radius: 16px;
    }
}

@media(max-width: 830px) {
    .parts.cooperation .parts_wrapper .parts_item {
        width: 100%;
    }
    .parts.cooperation .parts_wrapper .parts_item img {
        width: 19vw;
    }
}

@media(max-width: 820px) {
    .about_wrapper img {
        width: 100%;
    }
    
    .about_wrapper {
        flex-direction: column-reverse;
        gap: 0;
        align-items: center;
    }
    .about_wrapper .text {
        background: #fff;
        border-radius: 40px;
        display: flex;
        flex-direction: column;
        top: -110px;
        background-image: unset;
        width: 100%;
        height: auto;
    }
    .about_wrapper .text .btn {
        position: relative;
        margin-top: 15px;
        width: 100%;
        border-radius: 16px;
    }
    .about_wrapper .text p {
        font-size: 14px;
        line-height: 1;
        margin-top: 15px;
    }
    .about_wrapper .text h4 {
        font-size: 32px;
    }
    header .header_wrapper {
        background: #fff;
        border-radius: 16px;
    }
    .practice_wrapper, .practice_wrapper .left, .practice_wrapper .right {
        flex-wrap: wrap;
        width: 100%;
    }

    .formNews_wrapper form {
        background-color: #fff;
        border-radius: 20px;
        padding: 32px;
        position: relative;
        bottom: -160px;
        right: 0;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 0 auto;
    }
    .formNews {
        padding-bottom: 120px;
    }
    .formNews_wrapper {
        height: auto;
    }
    .about_wrapper.desc {
        display: none;
    }
    .about_wrapper.mob {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .pages .about_wrapper .text {
        width: 100%;
    }

    .pages .about_wrapper .text p + p {
        margin-bottom: 24px;
    }
    .pages section.benefits {
        margin-top: 0;
    }

    .pages .about_wrapper .text {
        padding: 20px;
    }

    .pages section.benefits.cooperation {
        margin-top: 100px;
    }

    .cooperation .banner_wrapper {
        flex-direction: column-reverse;
    }
    .cooperation .banner_wrapper .text, .cooperation .banner_wrapper .img {
        width: 100%;
    }

    .cooperation .banner_wrapper .img {
        position: relative;
    }

    .cooperation .banner_wrapper .img::after {
        position: absolute;
        content: "";
        bottom: 0;
        left: 0;
        background: linear-gradient(188.95deg, rgba(0, 0, 0, 0) 48.17%, rgba(0, 0, 0, 0.6) 81.95%);
        width: 100%;
        height: 100%;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }

    .cooperation h1 {
        bottom: 200px;
        z-index: 2;
        color: #fff;
        padding: 0 20px;
        position: absolute;
    }

    .club h1 {
        bottom: 0px;
        z-index: 2;
        color: #000; 
        padding: 0 20px;
        position: relative; 
    }
    .pages section.benefits.club {
        margin-top: 200px;
    }
    .contacts .banner_wrapper {
        flex-direction: column;
    }
    
}



@media(max-width: 750px) {
    .parts .parts_wrapper  {
        flex-direction: column;
        align-content: center;
    }
    .parts .parts_wrapper .parts_item {
        width: calc(70% - 15px);
    }
    .parts .parts_wrapper .parts_item:hover img {
        right: 15px;
    }
    .footer_wrapper-bottom .container {
        flex-direction: column-reverse;
    }

    .filter_block label {
        font-size: 14px;
    }
    .category .container, .product_items {
        gap: 10px;
    }
    .product_wrapper {
        width: calc(71% - 5px);
    }
    .sort_dropdown {
        margin-bottom: 10px;
    }

    .filter_wrapper {
        border-radius: 20px;
        padding: 15px;
    }
    .product_item {
        border-radius: 20px;
        padding: 10px; 
    }

    .pages .cooperation.business .benefits_item {
        width: calc(50% - 30px);
    }
    .textpage .title {
        padding: 20px;
    }
    .textpage h1 {
        width: 100%;
    }
    .textpage .title img {
        display: none;
    }
    .textpage h1 {
        font-size: 44px;
    }
}

@media(max-width: 700px) {
    .working_wrapper .working_item:nth-child(1) img {
        max-width: 35%;
        bottom: -160px;
        height: 60%;
        right: -10px;
    }
    .btn {
        font-size: 16px;
        padding: 13px 17px;
    }
    .working_wrapper .working_item:nth-child(1):hover img {
        bottom: -149px !important;
    }
    .popular_cat .category_wrapper .category_item {
        width: calc(50% - 20px);
    }
    .footer_wrapper-top .bottom {
        gap: 18px;
    }
    .about_wrapper img, .about_wrapper .text {
        width: 100%;
    }
    .about_wrapper .text {
        top: -60px;
        padding: 20px;
    }
    .banner h1 {
        font-size: 30px;
    }
    .good_wrapper {
        flex-direction: column;
    }
    .product_item {
        width: 100%;
    }
    .cooperation h1 {
        bottom: 220px;
    }

    .club .banner_wrapper .text .desc {
        width: 50%;
    }

    .club h1 {
        bottom: 0;
    }
}

@media(max-width: 670px) {
    .footer_wrapper-top .bottom {
        align-items: center;
        flex-direction: column;
    }
    .footer_wrapper-top .bottom .address {
        width: 100%;
        text-align: center;
    }
    .footer_wrapper-top .bottom .social {
        margin-left: 0;
    }
}

@media(max-width: 650px) {
    .product_items {
        flex-direction: row;
    }

    .product_item {
        width: calc(50% - 5px);
        flex-direction: column;
    }

    .product_item .price_option {
        display: flex;
        align-items: center;
        margin-top: auto;
        margin-bottom: 15px;
        flex-wrap: wrap;
        justify-content: start;
        gap: 8px;
    }
    
    .product_item .price {
        order: 1;
    }
    
    .product_item .price_option svg {
        order: 2;
    }

    .product_item .price_option .option {
        margin-left: 0;
        width: 100%;
        order: 0;
    }

    .product_item .products_info {
        height: 100%;
    }
    .filter_block input[type="checkbox"] {
        width: 12px;
        height: 12px;
        margin-right: 5px;
    }
    .product_info {
        width: 100%;
    }
}

@media(max-width: 630px) {
    .parts.cooperation .parts_wrapper .parts_item .desc {
        width: 75%;
    }
}

@media(max-width: 600px) {
    section {
        margin-top: 60px;
    }
    .privilegii {
        background: unset; 
        padding: 40px 0;
        padding: 40px 1vw;
        padding: 0 20px;
    }
    .privilegii .container {
        background: linear-gradient(94.1deg, #1A1A1A 27.57%, #2D2D2D 103.87%);
        border-radius: 40px;
        padding: 22px;
    }
    .privilegii .info {
        width: 100%;
        height: 304px;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 2;
    }
    .privilegii .info .btn {
        margin-top: auto;
            width: 100%;
    }
    .privilegii img {
        width: 240px;
        height: 176px;
        bottom: 40px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .privilegii h4 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .privilegii p {
        font-size: 16px;
    }
    
    .footer_wrapper-top .top .nav {
        flex-direction: column;
    }
    .catalog .catalog_wrapper .catalog_item {
        width: 100%;
        height: 360px;
    }
    .container {
        padding: 0 15px;
    }
    .product_item .price {
        margin-right: 0;
    }
    .filter_wrapper {
        display: none;
    }
    .product_wrapper {
        width: 100%;
    }

    .parts.cooperation .parts_wrapper .parts_item .info {
        height: 41vw;
    }

    .cooperation h1 {
        bottom: 240px;
    }

    .club h1 {
        bottom: 0;
    }
    .club .banner_wrapper .text {
        height: 300px;
    }

    .club .banner_wrapper .text .desc {
        width: 100%;
    }
    .club .banner_wrapper .text {
        position: absolute;
        z-index: 2;
        bottom: -200px;
    }
    .pages section.benefits.club {
        margin-top: 300px;
    }
    .contacts .banner_wrapper .text {
        position: relative;
        z-index: 2;
        bottom: 0;
        border-radius: 20px;
    }

    .banner .banner_wrapper .desc, .banner .banner_wrapper svg {
        display: none;
    }
    .contacts .banner_wrapper p.desc, .contacts .banner_wrapper svg {
        display: block;
    }

    .banner .banner_wrapper .mob {
        display: block;
    }

    .banner .btn {
        height: auto;
        position: relative;
        width: 100%;
        font-size: 16px;
        height: 40px;
        margin-top: 15px;
    }
    .banner h1 {
        font-size: 30px;
        bottom: 0;
        top: 40px;
    }
    .contacts h1 {
        top: 0;
    }
    .cooperation h1 {
        font-size: 30px;
        bottom: 20px;
        top: unset;
    }
    
    .working_wrapper .working_item img {
        display: none;
    }
    
    .working_wrapper form {
        padding: 10px;
    }
    
    section.banner.cooperation {
        height: 600px;
    }
    .banner .banner_wrapper .desc {
        display: block;
        position: absolute;
        
        display: none;
    }
    
    .banner.contacts .banner_wrapper .desc {
        display: block;
    }
    
    .banner .banner_wrapper p.desc {
        display: block;
    }
    
    section.banner.cooperation.club {
        height: auto;
    }
    
    .club .banner_wrapper .text .desc {
        position: relative;
    }
    
    .parts .parts_wrapper .parts_item .info {
        height: 52vw;
    }
    /* .club .banner_wrapper .text .btn {
        background-color: #fff;
        color: #000000;
    } */
}

@media(max-width: 550px) {
    .working_wrapper .working_item:nth-child(1) img {
        display: none;
    }
    .working_wrapper .working_item:nth-child(1) {
        height: auto;
    }
    .working_wrapper .working_item h4 {
        font-size: 20px;
    }
    p {
        font-size: 16px;
    }
    .parts .parts_wrapper .parts_item:hover img {
        right: 12px;
    }

    h4 {
        font-size: 22px;
    }

    .benefits .benefits_wrapper .benefits_item p, .parts .parts_wrapper .parts_item p {
        font-size: 16px;
    }
    .form .working_wrapper h3 {
        font-size: 28px;
        color: #fff;
    }
    .form .working_wrapper .left {
        padding: 16px 16px 0px 16px;
    }
    .form .working_wrapper {
        border-radius: 20px;
    }
    .toggle-switch {
        width: 45px;
        flex-shrink: 0;
    }
    .toggle-switch.active .slider {
        transform: translateX(36px);
    }
    .formNews_wrapper form h3 {
        font-size: 32px;
    }

    .product_item .btn span {
        display: none;
    }

    /* .product_item .btn svg{
        display: block;
    } */

    .product_item .btn {
        /* padding: 5px 17px; */
        padding: 14px;
    }
    .product_item h3 {
        font-size: 16px;
    }

    .cooperation h1 {
        bottom: 30px;
    }

    .club h1 {
        bottom: 0;
    }

    .form.cooperation .working_wrapper form {
        top: -40px;
    }
    .club .banner_wrapper .text .btn {
        margin-top: auto;
        position: relative;
        z-index: 2;
        margin: 0 auto;
        margin-top: auto;
        border-radius: 16px;
        height: 48px;
    }
    .club .banner_wrapper .text img {
        right: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .quize .questions .quize_item .title p {
        font-size: 18px;
        font-family: "Manrope";
    }
    .quize .questions .quize_progressBar {
        margin-bottom: 12px;
    }

    .quize .questions {
        padding: 20px;
    }
    .contacts .banner_wrapper .text img {
        left: unset;
        right: 0;
        transform: unset;
        
    }

    section.textpage {
        margin-top: 0;
    }

    .error .errorImg {
        height: 72vw;
    }
    
    .footer_wrapper-top .container {
        padding: 46px 20px 28px 20px;
    }
    
    .form .working_wrapper form, .form.cooperation .working_wrapper .right {
        border-radius: 18px;
        padding: 20px;
    }
    
    
    /* section.banner.cooperation {
        height: 500px;
    } */
    
    .bread__crumbs {
        font-size: 14px;
    }
    .quize_item.new .filter_block input {
        width: 100%;
    }
    .pages .benefits .benefits_wrapper .benefits_item {
        width: 100%;
    }
    
}

@media(max-width: 500px) {
    .working_wrapper .working_item:nth-child(2), .working_wrapper .working_item:nth-child(3) {
        width: 100%;
    }
    h2 {
        font-size: 28px;
    }
    .parts .parts_wrapper .parts_item .info {
        /* height: 40vw; */
        height: auto;
    }
    
    .parts .parts_wrapper .parts_item .info a, .popular_cat .category_wrapper .category_item a {
        width: 100%;
        border-radius: 16px;
        height: 40px;
    }
    
    .parts .parts_wrapper .parts_item {
        width: 100%;
        height: 350px;
        border-radius: 20px;
    }
    
    .parts .parts_wrapper .parts_item img {
        width: 24vw;
        height: 19vw;
        bottom: 50px;
    }
    
    .parts .parts_wrapper .parts_item img {
        width: 170px;
        height: 140px;
        bottom: 40px;
        z-index: 0;
    }
    
    .question_item h3 {
        font-size: 18px;
    }
    .about_wrapper .text h4 {
        font-size: 24px;
    }
    .about_wrapper .text p {
        font-size: 16px;
    }
    section {
        margin-top: 60px;
    }
    h2 {
        margin-bottom: 30px;
    }
    section.benefits {
        margin-top: 0;
    }
    .product-gallery {
        width: 100%;
    }
    .product_info .tabs__link {
        padding: 8px 10px;
        font-size: 14px;
    }

    .thumbs-slider img {
        display: none;
    }

    .thumbs-slider .swiper-slide {
        border: 2px solid #A4A4A4;
        width: 8px;
        height: 8px;
        background-color: #A4A4A4;
    }

    .thumbs-slider .swiper-slide-thumb-active {
        border: 2px solid #FF7400;
        width: 8px;
        height: 8px;
        background-color: #FF7400;
    }

    .parts.cooperation .parts_wrapper .parts_item img {
        bottom: 50px;
        width: 280px;
        height: auto;
    }

    .pages .cooperation.business .benefits_item {
        width: 100%;
    }

    .pages .cooperation.business .benefits_item {
        height: 360px;
    }

    .pages .cooperation.business .benefits_item:nth-child(3) img {
        width: 190px;
    }

    .textpage .title {
        background-color: transparent;
    }
    .textpage h1 {
        font-size: 32px;
    }
    
    .formNews_wrapper form .bottom {
        flex-direction: column;
    }
    
    .formNews_wrapper form .bottom .btn {
        width: 100%;
    }
    
    .formNews_wrapper form {
        padding: 16px;
    }
    
    .parts.cooperation .parts_wrapper .parts_item {
        height: 440px;
    }
    
    .parts.cooperation .parts_wrapper .parts_item .info {
        height: auto;
    }
    
    .parts.cooperation .parts_wrapper .parts_item .desc {
        width: 100%;
    }
    
    .about_wrapper.mob .text {
        padding: 20px;
    }
    
    .question_item {
        padding: 30px 20px;
    }
    
    .cooperation .banner_wrapper .img {
        height: 400px;
    }
    
}

@media(max-width: 460px) {
    .cooperation h1 {
        bottom: 30px;
        font-size: 28px;
    }
    .club h1 {
        bottom: 0;
        font-size: 28px;
    }
}

@media(max-width: 450px) {
    .parts.cooperation .parts_wrapper .parts_item .info {
        height: 50vw;
        height: auto;
    }
    .form.cooperation .working_wrapper h3 {
        font-size: 32px;
    }
}

@media(max-width: 430px) {
    header .social .phone {
        display: none;
    }
    .parts .parts_wrapper .parts_item {
        width: 100%;
    }
    /* .parts .parts_wrapper .parts_item img {
        width: 24vw;
        height: 19vw;
        bottom: 20px;
    } */
    .popular_cat .category_wrapper .category_item h3 {
        font-size: 16px;
        font-weight: 500;
    }
    /* .privilegii img {
        width: 310px;
        height: 215px;
    } */
    /* .privilegii .info {
        height: 360px;
    } */
    .footer_wrapper-top .top .nav {
        align-items: flex-start;
        width: 100%;
    }
    .toggle-switch.active .slider {
        transform: translateX(26px);
    }
    .footer_wrapper-top .bottom {
        align-items: start;
    }
    .footer_wrapper-top .bottom .address {
        text-align: left;
    }
}

@media(max-width: 400px) {
    .cooperation h1 {
        bottom: 30px;
        font-size: 28px;
    }
    .club h1 {
        bottom: 0;
        font-size: 28px;
    }
    .contacts .banner_wrapper .text img {
        width: 140px;
        height: 140px;
    }
    section.banner.cooperation {
        height: 600px;
    }
    .cooperation .banner_wrapper .img {
        height: 360px;
    }
}

@media (max-width: 370px) {
    .popular_cat .category_wrapper .category_item h3 {
        font-size: 14px;
    }
}

.social_telBox {
    display: flex;
    gap: 5px;
}

.social_telBox .phone {
    font-size: 18px;
    line-height: normal;
    position: relative;
    z-index: 2;
    padding: 10px 10px;
    padding-left: 50px;
    border-radius: 24px;
    background-color: #fff;
    transition: all .45s;
}

.social_telBox .phone svg {
    position: absolute;
    content: '';
    /* background: url('../../../uploads/tel_img.svg') center no-repeat; */
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    width: 18px;
    height: 18px;
    z-index: 1;
}

header .social .phone:hover {
    color: #FF7400;
    transition: all .45s;
}

.header {
    transition: all 0.5s;
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0px;
}

.header .header_wrapper {
    transition: all .5s;
}

.header.sticky .header_wrapper {
    background: #fff;
    padding: 10px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.placeholder {
    display: none;
    height: 100px; /* Высота хедера */
}

.choices {
    margin-bottom: 0;
}

.choices__inner {
    background: #F7F7F7;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 10px;
    min-height: 54px;
    font-size: 16px;
    padding-left: 20px;
    transition: all .5s;
    display: flex;
    align-items: center;
}

.choices__list--single {
    padding: 0;
}

.choices__list--dropdown {
    border: 2px solid #667eea;
    border-radius: 0px;
    margin-top: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all .5s;
}

.choices__list--dropdown .choices__item--selectable {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: all .5s;
}

.choices__list--dropdown .choices__item--selectable:hover {
    background: #667eea;
    color: white;
}

.choices[data-type*=select-one]::after {
    transition: all .5s;
}

.pageDevelopment {
    background-color: #141414;
    display: flex;
    flex-direction: column;
    height: 99vh;
}

.pageDevelopment header .nav a {
    color: #fff;
}

.pageDevelopment header .nav a:hover {
    color: #FF7400;
}

.pageDevelopment header .social a.tg path,
.pageDevelopment header .social a.wa path {
    fill: #fff;
}

.pageDevelopment header .social a.tg:hover path,
.pageDevelopment header .social a.wa:hover path {
    fill: #FF7400;
    transition: all .45s;
}

.pageDevelopment_wrapper {
    max-width: 906px;
    height: 413px;
    margin: 100px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pageDevelopment_img1 {
    margin-bottom: 70px;
}

.pageDevelopment_text {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 1.1;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.pageDevelopment_img2 {
    width: 115px;
    height: 115px;
}

.pageDevelopment footer {
    margin-top: auto;
    margin-bottom: 40px;
}

.pageDevelopment footer p {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: #fff;
}

.fancyContent {
    max-width: 1290px;
    width: 100%;
    height: 750px;
    border-radius: 40px;
}

.fancyContent.quize .questions {
    padding: 0;
}

.quize_item.new {
    /* flex-direction: column; */
    height: 0;
}

.quize_item.new.active {
    flex-direction: column;
    height: 580px;
}

.quize .questions .quize_item.new .bottom {
    margin-top: auto;
}

.quize .questions .quize_item.new .radio_item {
    border: none;
}

.quize_item.new .filter_block .radio_item:has([type="radio"]:checked) {
    border: none;
}

.attach-input {
  display: none;
}

.attach-text {
    padding: 20px;
    border-radius: 20px;
    background-color: #F7F7F7;
    width: 100%;
}

.attach-textarea {
    padding: 20px;
    border-radius: 20px;
    background-color: #F7F7F7;
    width: 100%;
    height: 200px;
}

.attach-textarea::placeholder {
  color: #A4A4A4;
  opacity: 1; /* Для Firefox */
}

.quize_item_new_text {
    font-weight: 400;
    font-size: 16px;
    color: #A4A4A4;
    margin-bottom: 40px;
}

.quize_item.new .filter_block {
    display: flex;
    gap: 10px;
    flex-direction: column;
    
    margin-bottom: 0;
}

.quize_item.new.active .ajax_form .sc_captcha_container {
    margin-inline: inherit;
}

.quize_item.new .politic {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.quize_loading {
    background: #f9f9f9;
    border-radius: 10px;
    margin: 20px 0;
}

.quize_success {
    background: #f9f9f9;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    padding: 40px;
}

.quize_success h3 {
    color: #4CAF50;
    margin-bottom: 20px;
}

.attach-text::placeholder {
  color: #A4A4A4;
  opacity: 1; /* Для Firefox */
}

.ajax_form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.attach-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 14px;
}

.quize_item.new .filter_block .radio_item {
    flex-wrap: wrap;
}

.quize_item.new .filter_block .attach-text {
    width: calc(50% - 15px);
    border: 1px solid transparent;
    transition: all .5s;
}



#question_6.quize_item.new .title {
    margin-bottom: 20px;
}

#question_6.quize_item.new .quize_item_new_text {
    margin-bottom: 20px;
}

.quize_item.new .filter_block .attach-text:focus {
    border-color: #FF7400;
}

.quize_item.new .filter_blocks [type='checkbox'],.quize_item.new .filter_block [type='radio'] {
    width: 24px;
}

.download_input {
    display: none;
}

.working_wrapper form label.download_file_label {
    align-items: center;
    cursor: pointer;
}

.form.cooperation .working_wrapper .right.ajax_form {
    padding: 0;
}

.footer_wrapper-top .container {
    gap: 50px;
}

.scroll-top-link {
    text-align: end;
    position: fixed;
    right: 50px;
    cursor: pointer;
    bottom: 50px;
    width: 65px;
    height: 65px;
}

.header_soc_burger {
    display: none;
}

html {
    scroll-behavior: smooth;
}

.mobile_socBurger_menu {
    position: absolute;
    width: 100%;
    background-color: #fff;
    padding: 10px;
    border-radius: 20px;
    z-index: 99999;
    display: flex;
    justify-content: center;
    gap: 20px;
    transform: translateY(-100px);
    transition: all .5s;
    align-items: center;
}

.mobile_socBurger_menu.active {
    transform: translateY(0);
}

.mobile_socBurger_menu_links {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.mobile_socBurger_menu_links a {
    padding: 5px 10px;
    display: flex;
    gap: 10px;
    border-radius: 20px;
    color: #fff;
    background-color: #FF7400;
}

.mobile_socBurger_menu_links a svg path {
    fill: #fff;
}

.quize .questions .quize_item.new.questions_autos .radio_item {
    width: 25%;
}

.quize .questions .quize_item.new.questions_autos .radio_item + .radio_item {
    margin-top: 0;
    flex-wrap: nowrap;
}

.quize .questions .quize_item.new.questions_autos .filter_block {
    gap: 0;
    flex-direction: row;
    flex-wrap: wrap;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: none;
} 

section.form.working.cooperation .right {
  scroll-margin-top: 100px;
}

.cooperation .banner_wrapper {
    margin-top: 60px;
}

.text_page .container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.text_page .container ul {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.text_page .container h5 {
    font-size: 22px;
    padding: 20px 0;
}

#form_feedback_site_creative .title {
    flex-direction: column;
}
.choices {
    transition: all .5s;
}

.choices.is-focused .choices__inner {
    border-color: #FF7400;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    
}

.choices.is-focused.is-open .choices__list--dropdown, .choices__list[aria-expanded] {
    border: 2px solid #FF7400;
    border-top: none;
    border-color: #FF7400;
    
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.choices.is-focused.is-open .choices__inner {
    border-color: #FF7400;
    border-bottom-color: transparent;
}

.quize_item.new.active .choices {
    width: calc(50% - 15px);
}

.quize_item.new.active .choices .choices__inner {
    min-height: 64px;
}

.politic span a {
    text-decoration: underline;
}

.shema_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sc_captcha_container {
    position: relative;
    height: 140px !important;
}

.sc_captcha_container::after {
    position: absolute;
    content: 'совместите ползунок';
    top: 10px;
    left: 20px;
    width: 100%;
}

.popupFeedback .shema_content input {
    background-color: #F7F7F7;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 10px;
    padding-left: 20px;
    transition: all .5s;
}
.popupFeedback .politic {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}
.popupFeedback .shema_content {
    margin: 10px 0;
}
#popupFeedback {
    max-width: 500px;
    border-radius: 20px;
}

@media (max-width: 1300px) {
    header .nav a {
        font-size: 1.3vw !important;
    }
    header .social .phone {
        font-size: 1.3vw !important;
    }
}

@media (max-width: 1050px) {
    .social_telBox .phone {
        font-size: 18px;
        padding: 5px 10px;
        padding-left: 30px;
    }
    .social_telBox .phone svg {
        left: 10px;
        width: 14px;
        height: 14px;
    }
    .pages header .nav a {
        padding: 5px 10px;
    }
}

@media (max-width: 850px) {
    .header.sticky .header_wrapper {
        padding: 5px;
    }
    .social_telBox {
        display: none;
    }
    .header_soc_burger {
        display: block;
    }
    header .social .tg,
    header .social .wa {
        display: none;
    }
    header .mobile-menu  .social .tg,
    header .mobile-menu  .social .wa {
        display: block;
    }
    .header .header_wrapper {
        position: relative;
    }
    .scroll-top-link svg {
        width: 100%;
        height: 100%;
    }
    .scroll-top-link {
        right: 10px;
        bottom: 10px;
        width: 35px;
        height: 35px;
    }
    section.form.working.cooperation .right {
      scroll-margin-top: 80px;
    }
    
}

@media (max-width: 800px) {
    .quize .questions .quize_item.new.questions_autos .radio_item {
        width: 45%;
    }
    .quize .questions .quize_item.new.questions_autos .filter_block {
        overflow-y: scroll;
    }
}
@media (max-width: 600px) {
    .contacts.club .banner_wrapper .text {
        height: auto;
    }
    .club .banner_wrapper .text {
        height: 280px;
    }
    .pageDevelopment_text {
        font-size: 32px;
    }
    .fancyContent {
        height: auto;
        border-radius: 20px;
        padding: 20px;
        padding-top: 50px;
    }
    .quize_item.new .filter_block input {
        width: 100%;
        padding: 10px;
        font-size: 14px;
        border-radius: 10px;
    }
    .quize_item.new .politic {
        font-size: 10px;
    }
    #question_6.quize_item.new .filter_block .attach-text {
        width: 100%;
    }
    #question_yes_2.quize_item.new .filter_block .attach-text {
        width: 100%;
    }
    .quize_item.new.active {
        height: 600px;
    }
    .quize_item.new .filter_block .attach-text,
    .quize_item.new .filter_block .choices {
        width: calc(100% - 15px);
        height: 54px;
    }
    .choices[data-type*=select-one] .choices__inner {
        padding: 10px;
        font-size: 14px;
        border-radius: 10px;
    }
    .choices__list--dropdown, .choices__list[aria-expanded] {
        margin-top: -10px;
    }
    
}

.form.working h1 {
    font-weight: 600;
    font-size: 56px;
    margin-bottom: 50px;
    margin-top: -50px;
}
@media (max-width: 820px) {
    .form.working h1 {
        padding: 0 20px;
    }
}
@media (max-width: 600px) {
    .form.working h1 {
        font-size: 28px;
        margin-top: -20px;
    }
}

