@charset "UTF-8";
@import url(../fonts/lato.css);
body {
  --dark-color: #18154B;
  --blue-color: #11527D;
  --cian-color: #34A8BB;
  --black-color: #000;
  --bg-color: #F0F5FB;
  --white-color: #fff;
  --black-text-color: #000;
  --dark-text-color: #18154B;
  --cian-text-color: #34A8BB;
  --blue-text-color: #11527D;
  --gray-text-color: #303239;
  --caption-text-color: #b0b0b0;
  --white-text-color: #fff;
  --gradient: linear-gradient(75deg, var(--cian-color) -50%, var(--blue-color) 75%);
  --gradient-dark: linear-gradient(75deg, var(--cian-color) -50%, var(--dark-color) 75%);
  --box-shadow: 0px 4px 20px 0px #0000001A;
  --desktop-width: 1560px;
  --header-index: 3;
  --dropdown-index: 4;
  --overlay-index: 5;
  --modal-index: 6;
  --radius-s: 10px;
  --radius-m: 15px;
  --radius-l: 20px;
  --radius-full: 100px;
  --radius-circle: 50%;
  --font-family-main: "Nunito Sans", serif;
  --font-family-sub: "lato", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--bg-color);
}
body::-webkit-scrollbar {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
}

.footer__captions-item {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.footer__captions-text {
  font-size: 18px;
  color: #fff;
}

.footer__captions-link {
  color: #34A8BB;
  font-size: 18px;
  text-decoration: underline;
  transition: all 0.1s ease-in-out;
}

.footer__captions-link:hover {
  text-decoration: none;
}

::-webkit-input-placeholder { /* WebKit browsers */
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}
::placeholder { /* Recent browsers */
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 767px) {
  ::-webkit-input-placeholder { /* WebKit browsers */
      font-size: 12px;
  }
  :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
      font-size: 12px;
  }
  ::-moz-placeholder { /* Mozilla Firefox 19+ */
      font-size: 12px;
  }
  :-ms-input-placeholder { /* Internet Explorer 10+ */
      font-size: 12px;
  }
  ::placeholder { /* Recent browsers */
      font-size: 12px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 46px;
  color: #18154b;
  font-size: 38px;
  text-transform: uppercase;
  text-align: left;
}

body::-webkit-scrollbar-track {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  background: var(--blue-color);
  border-radius: var(--radius-full);
  border: none;
}
body.open {
  overflow: hidden;
}
body.page-bg {
  background-color: #f0f5fb;
}
html {
  scroll-behavior: smooth;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-main);
  font-size: 16px;
  line-height: 17px;
  box-sizing: border-box;
}

button,
a {
  cursor: pointer;
  text-decoration: none;
  color: var(--black-text-color);
}

button,
fieldset {
  border: none;
  background: none;
}

button:hover,
a:hover {
  opacity: 0.8;
}

.info {
  width: var(--desktop-width);
    margin: 0 auto 100px auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3px;
    flex-wrap: wrap;
}

.info-item {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 22px 10px;
  display: flex;
  gap: 10px;
  border-radius: 10px;
  align-items: center;
  min-width: 225px;
}

.info-item__text-link {
  transition: all 0.1s ease-in-out;
}

.info-item__text-link:hover {
  text-decoration: underline;
}

.info-item__text {
  width: 80%;
}

.info-item__img img {
  width: 80px;
}

.info-item__text-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
}

.info-item__text-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

@media (max-width: 1377px) {
  .info-item {
    padding: 22px 30px;
  }
  .info {
    gap: 20px;
  }
}

@media (max-width: 1255px) {
   .info-item {
    min-width: 290px;
  }

  .info {
    justify-content: center;
  }
}

@media (min-width: 1650px) {
  .info-item {
    padding: 22px 30px;
  }
}

#scrollToTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    z-index: 999;
}

#scrollToTop img {
    width: 100%;
}

#scrollToTop:hover {
    opacity: 1;
}

.btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 32px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  background-color: var(--blue-color);
  color: var(--white-text-color);
  border-radius: var(--radius-full);
}
.btn.white {
  background-color: var(--white-color);
  color: var(--dark-text-color);
}
.btn.cian {
  font-weight: 700;
  background-color: var(--cian-color);
  color: var(--white-text-color);
}
.btn.dark {
  background-color: var(--dark-color);
  color: var(--white-text-color);
}
.btn.outline {
  font-weight: 700;
  background: transparent;
  border: 1px solid var(--white-text-color);
  color: var(--white-text-color);
}
.btn.gradient {
  background: var(--gradient);
}

.title {
  display: block;
  color: var(--dark-text-color);
  margin-bottom: 40px;
  font-size: 38px;
  line-height: 46px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: left;
}

.stub {
  flex: 1;
  width: var(--desktop-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* .stub h1 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(75deg, var(--cian-color) -10%, var(--dark-color) 75%);
} */

@media screen and (max-width: 1900px) {
  body {
    --desktop-width: 70%;
  }
  /* .title {
    font-size: 28px;
    line-height: 32px;
  } */
}
@media screen and (max-width: 1600px) {
  body {
    --box-shadow: 0px 2px 10px 0px #0000001A;
    --radius-s: 8px;
    --radius-m: 12px;
    --radius-l: 12px;
  }
  .btn {
    /* font-size: 13px; */
    /* line-height: 14px; */
    padding: 8px 20px;
  }
  /* .title {
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 26px;
  } */
}
@media screen and (max-width: 1200px) {
  .title {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 24px;
  }
}
@media screen and (max-width: 1000px) {
  body {
    --desktop-width: calc(100% - 32px);
  }
  .btn {
    /* font-size: 15px; */
    /* line-height: 16px; */
    padding: 10px 20px;
  }
}
@media screen and (max-width: 720px) {
  body {
    --radius-s: 5px;
    --radius-m: 10px;
    --radius-l: 10px;
    --box-shadow: 0px 3px 12px 0px #0000001A;
  }
}
.header {
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  margin-bottom: 40px;
}
.header:has(.header__dropdown.open) {
  box-shadow: none;
}
.header__top {
  background: var(--blue-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px calc((100% - var(--desktop-width)) / 2);
  color: var(--white-text-color);
}
.header__top a {
  color: var(--white-text-color);
  text-decoration: none;
  font-size: 14px;
}
.header__top-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}
.header__top-container p,
.header__top-container a {
  font-size: 15px;
  line-height: 16px;
}
.header__phone {
  display: block;
  padding-left: 24px;
  background: url(../icons/phone.svg) 0 center/contain no-repeat;
}
.header__top-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.header__top-icons img {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__main {
  padding: 15px calc((100% - var(--desktop-width)) / 2);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3%;
  position: relative;
}
.header__logo {
/*  width: 180px;
  height: 35px;*/
  -o-object-fit: contain;
     object-fit: contain;
}
.header__hambbtn {
  display: none;
  min-width: 22px;
  width: 22px;
  height: 16px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.header__hambbtn span {
  display: block;
  position: absolute;
  height: 2px;
  border-radius: var(--radius-full);
  width: 100%;
  background: var(--blue-color);
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
}
.header__hambbtn span:nth-child(1) {
  top: 0px;
}
.header__hambbtn span:nth-child(2) {
  top: 8px;
}
.header__hambbtn span:nth-child(3) {
  top: 8px;
}
.header__hambbtn span:nth-child(4) {
  top: 16px;
}
.header__hambbtn.open span:nth-child(1) {
  top: 16px;
  width: 0%;
  left: 50%;
}
.header__hambbtn.open span:nth-child(2) {
  transform: rotate(45deg);
}
.header__hambbtn.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.header__hambbtn.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.header__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}
.header__link {
  color: var(--gray-text-color);
  text-decoration: none;
  white-space: nowrap;
}
.header__link.dropdownbtn, .header__link-bar.dropdownbtn {
  padding-right: 15px;
  position: relative;
}

.header__link.dropdownbtn::after, .header__link-bar.dropdownbtn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 10px;
  height: 5px;
  background: url(../icons/arrow-for-dropdown.svg) center/contain no-repeat;
  transition: all 0.2s ease-in-out;
}

.header__link-bar.dropdownbtn::after {
   background: url(../icons/arrow-for-dropdown-w.svg) center/contain no-repeat;
}

.header__link.dropdownbtn.open:after {
  transform: rotate(180deg) translateY(50%);
}
.header__link.mobile {
  display: none;
}

.header__dropdown {
  position: absolute;
  z-index: var(--dropdown-index);
  top: 100%;
  left: 0;
  width: 100%;
  padding: 35px calc((100% - var(--desktop-width)) / 2 + 200px) 35px calc((100% - var(--desktop-width)) / 2 + 335px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 10px;
  background-color: var(--white-color);
  border-top: 1px solid var(--blue-color);
  box-shadow: var(--box-shadow);
  display: none;
}

.header__dropdown.cmp {
  top: 36px;
  z-index: 999;
}

.header__dropdown.cmp a {
  color: var(--gray-text-color);
}
.header__dropdown.open {
  display: flex;
}
.header__dropdown-link {
  flex: 1;
  max-width: calc(25% - 30px);
  min-width: 200px;
}
.header__btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}
.header__call {
  padding: 10px 20px;
  font-weight: 400;
}
.header__bottom {
  display: none;
  margin-top: auto;
  width: 100%;
  order: 3;
  flex-direction: column;
}
.header__bottom-icons {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 20px;
}
.header__top-icon {
  width: 26px;
  height: 26px;
}
.header__bottom-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.header__bottom-container p {
  color: var(--blue-text-color);
}
.header__bottom-phone {
  color: var(--blue-text-color);
  display: block;
  padding-left: 24px;
  background: url(../icons/phone-blue.svg) 0 center/16px no-repeat;
}
.header__icons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.header__icon {
  background-color: var(--bg-color);
  border-radius: var(--radius-circle);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header__icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__icon.login__icon img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__icon span {
  position: absolute;
  top: -6px;
  right: -6px;
  border-radius: var(--radius-circle);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-color);
  color: var(--white-text-color);
  font-size: 10px;
}

@media screen and (max-width: 1900px) {
  .header {
    margin-bottom: 25px;
  }
  .header__logo {
    /*width: 120px;
    height: 35px;*/
  }
  .header__top-container {
    gap: 40px;
  }
  .header__call {
    font-size: 13px;
    line-height: 14px;
    white-space: nowrap;
    padding: 8px 15px;
  }
  .header__nav {
    gap: 40px;
  }
  .header__link {
    font-size: 13px;
    line-height: 14px;
  }
  .header__link.dropdownbtn {
    padding-right: 13px;
  }
  .header__link.dropdownbtn::after, .header__link-bar.dropdownbtn::after {
    width: 8px;
    height: 4px;
  }
  .header__icon {
    width: 30px;
    height: 30px;
  }
  .header__icon img {
    width: 14px;
    height: 14px;
  }
  .header__icon.login__icon img {
    width: 22px;
    height: 22px;
  }
  .header__icon span {
    top: -6px;
    right: -6px;
    width: 15px;
    height: 15px;
    font-size: 9px;
  }
  .header__top {
    padding: 8px calc((100% - var(--desktop-width)) / 2);
  }
  .header__main {
    padding: 10px calc((100% - var(--desktop-width)) / 2);
  }
  .header__btns {
    gap: 30px;
  }
}
@media screen and (max-width: 1600px) {
  .header {
    margin-bottom: 25px;
  }
  .header__top a {
    font-size: 13px;
    line-height: 14px;
  }
  .header__top-container {
    gap: 40px;
  }
  .header__top-container p,
  .header__top-container a {
    font-size: 11px;
    line-height: 12px;
  }
  .header__top-icons img {
    width: 22px;
    height: 22px;
  }
  .header__phone {
    display: block;
    padding-left: 16px;
  }
  .header__nav {
    gap: 32px;
  }
  .header__link {
    font-size: 11px;
    line-height: 12px;
  }
  .header__call {
    font-size: 11px;
    line-height: 12px;
  }
  .header__btns {
    gap: 16px;
  }
  .header__dropdown {
    padding: 20px calc((100% - var(--desktop-width)) / 2 + 7%);
  }
  .header__dropdown-link {
    font-size: 14px;
    line-height: 16px;
  }
}
@media screen and (max-width: 1400px) {
  .header__nav {
    gap: 20px;
  }
  .header__logo {
    width: 100px;
    height: 25px;
  }
  .header__top-container {
    gap: 30px;
  }
  .header__top-container p,
  .header__top-container a {
    font-size: 10px;
    line-height: 11px;
  }
  .header__top-icons img {
    width: 18px;
    height: 18px;
  }
  .header__link {
    font-size: 12px;
    line-height: 10px;
  }
  .header__call {
    padding: 5px 8px;
    font-size: 9px;
    line-height: 11px;
  }
  .header__main {
    padding: 6px calc((100% - var(--desktop-width)) / 2);
  }
  .header__icon {
    width: 24px;
    height: 24px;
  }
  .header__icon img {
    width: 12px;
    height: 12px;
  }
  .header__icon span {
    width: 12px;
    height: 12px;
    font-size: 8px;
  }
}
@media screen and (max-width: 1200px) {
  .header__top {
    gap: 15px;
  }
  .header__top-container {
    gap: 25px;
  }
  .header__nav {
    gap: 15px;
    justify-content: center;
  }
  .header__btns {
    gap: 10px;
  }
  .header__icon {
    width: 20px;
    height: 20px;
  }
  .header__icon img {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .header {
    box-shadow: none;
    margin-bottom: 28px;
  }
  .header__container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header__logo {
    width: 150px;
    height: 40px;
  }
  .header__hambbtn {
    display: block;
  }
  .header__btns {
    display: none;
    width: 100%;
    justify-content: end;
    order: 1;
  }
  .header__top {
    display: none;
  }
  .header__nav {
    display: none;
    width: 100%;
    order: 2;
    gap: 15px;
    flex-direction: column;
    align-items: start;
  }
  .header__link {
    font-family: var(--font-family-sub);
    font-size: 17px;
    line-height: 17px;
    font-weight: 700;
  }
  .header__link.mobile {
    display: block;
  }
  .header__dropdown {
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    flex-direction: column;
    border: none;
    box-shadow: none;
    gap: 10px;
  }
  .header__dropdown-link {
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
    font-size: 12px;
    line-height: 14px;
    padding-left: 18px;
  }
  .header__call {
    font-size: 12px;
    line-height: 16px;
    padding: 5px 7px;
    font-weight: 400;
  }
  .header__icon {
    width: 30px;
    height: 30px;
  }
  .header__icon img {
    width: 15px;
    height: 15px;
  }
  .header__icon span {
    width: 16px;
    height: 16px;
    font-size: 10px;
  }
  .header.open .header__main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--header-index);
    flex-direction: column;
    justify-content: start;
    flex-wrap: nowrap;
    gap: 30px;
    background-color: white;
    overflow: scroll;
  }
  .header.open .header__main::-webkit-scrollbar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 4px;
  }
  .header.open .header__main::-webkit-scrollbar-track {
    background: transparent;
  }
  .header.open .header__main::-webkit-scrollbar-thumb {
    background: var(--blue-color);
    border-radius: var(--radius-full);
    border: none;
  }
  .header.open .header__nav {
    display: flex;
  }
  .header.open .header__call {
    display: block;
  }
  .header.open .header__icons {
    display: flex;
  }
  .header.open .header__btns {
    display: flex;
  }
  .header.open .header__bottom {
    display: flex;
  }
}
.banner {
  width: var(--desktop-width);
  margin: 0 auto 100px auto;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.banner__slider {
  width: 100%;
}
.banner__slider-pagination {
  position: absolute;
  z-index: 2;
  top: auto;
  bottom: 0;
  text-align: center;
}
.banner__slider-pagination .swiper-pagination-bullet {
  background-color: white;
}
.banner__main {
  padding: 105px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  background: url(../img/footer.jpg) 10% 0/cover no-repeat;
  border-radius: var(--radius-s);
  position: relative;
}
.banner__bg-img {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 80%;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 40%;
  -o-object-fit: contain;
     object-fit: contain;
}
.banner__title {
  display: block;
  max-width: 60%;
  font-weight: 700;
  font-size: 38px;
  line-height: 46px;
  color: var(--white-text-color);
  position: relative;
  z-index: 2;
}
.banner__btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.banner__sidebar {
  min-width: 375px;
  max-width: 375px;
  background: url(../img/banner-small.jpg) center/cover no-repeat;
  border-radius: var(--radius-s);
  padding: 105px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.banner__header {
  display: flex;
  gap: 14px;
}
.banner__header-icon {
  width: 52px;
  height: 52px;
  -o-object-fit: contain;
     object-fit: contain;
}
.banner__header-title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: var(--white-text-color);
  text-transform: uppercase;
}
.banner__caption {
  font-weight: 300;
  line-height: 18px;
  font-size: 15px;
  color: var(--white-text-color);
  margin-bottom: 40px;
}
.banner__footer .btn {
  min-width: -moz-fit-content;
  min-width: fit-content;
}

@media screen and (max-width: 1900px) {
  .banner__main {
    padding: 40px;
    gap: 30px;
  }
  .banner__title {
    max-width: 70%;
    font-size: 28px;
    line-height: 32px;
  }
  .banner__bg-img {
    height: 90%;
    max-width: 45%;
  }
  .banner__sidebar {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 1600px) {
  .banner__main {
    padding: 30px;
    gap: 20px;
  }
  .banner__title {
    font-size: 22px;
    line-height: 26px;
  }
  .banner__bg-img {
    height: 90%;
    max-width: 45%;
  }
  .banner__sidebar {
    min-width: 250px;
    max-width: 250px;
    padding: 60px 20px;
  }
  .banner__header {
    gap: 10px;
  }
  .banner__header-title {
    font-size: 18px;
    line-height: 20px;
  }
  .banner__header-icon {
    width: 38px;
    height: 38px;
  }
  .banner__caption {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 14px;
  }
}
@media screen and (max-width: 1400px) {
  .banner {
    margin: 0 auto 60px auto;
    gap: 10px;
  }
  .banner__sidebar {
    min-width: 220px;
    max-width: 220px;
    padding: 50px 15px;
    gap: 10px;
  }
  .banner__slider-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    margin: 0 3px !important;
  }
  .banner__header {
    gap: 8px;
  }
  .banner__header-title {
    font-size: 16px;
    line-height: 18px;
  }
  .banner__header-icon {
    width: 34px;
    height: 34px;
  }
  .banner__caption {
    font-size: 11px;
    line-height: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .banner__title {
    font-size: 18px;
    line-height: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .banner__bg-img {
    height: 100%;
    max-width: 38%;
  }
  .banner__footer {
    flex-direction: column;
    align-items: start;
  }
}
@media screen and (max-width: 820px) {
  .banner {
    flex-direction: column;
  }
  .banner__title {
    max-width: 100%;
    font-size: 20px;
    line-height: 24px;
  }
  .banner__bg-img {
    height: 100%;
    max-width: 50%;
  }
  .banner__main {
    padding: 40px 18px;
    justify-content: center;
  }
  .banner__sidebar {
    min-width: 100%;
    max-width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 18px;
    gap: 20px;
    background: url(../img/footer.jpg) -100px center/calc(100% + 200px) no-repeat;
  }
  .banner__caption {
    display: block;
    max-width: 250px;
    margin: 0;
    text-align: end;
  }
  .banner__footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    gap: 20px;
  }
}
@media screen and (max-width: 680px) {
  .banner__caption {
    text-align: start;
  }
  .banner__footer {
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 10px;
  }
}
@media screen and (max-width: 520px) {
  .banner__btn {
    margin-bottom: 140px;
  }
  .banner__bg-img {
    top: auto;
    bottom: 0;
    transform: translate(0);
    height: 180px;
    max-width: 100%;
  }
  .banner__caption {
    font-size: 10px;
  }
  .banner__sidebar {
    flex-direction: column;
    gap: 0;
    align-items: start;
    background: url(../img/banner-small.jpg) center/cover no-repeat;
  }
  .banner__header {
    width: 100%;
    margin-bottom: 10px;
  }
}
.categories {
  width: var(--desktop-width);
  margin: 0 auto 100px auto;
}
.categories__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}
.categories__list-item {
  width: calc((100% - 40px) / 3);
  min-height: 100%;
}
.categories__more {
  display: none;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0 auto;
  background: linear-gradient(75deg, var(--cian-color) -50%, var(--dark-color) 75%);
}

.categoryItem {
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  border-radius: var(--radius-s);
  position: relative;
  overflow: hidden;
  padding: 50px;
  background: url(../img/category-bg.png) 0 center/contain no-repeat;
  background-color: var(--white-color);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
.categoryItem__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.categoryItem__img {
  width: 40%;
  -o-object-fit: contain;
     object-fit: contain;
}
.categoryItem__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 55%;
  height: 100%;
  /*justify-content: space-between;*/
  justify-content: center;
}
.categoryItem__content h5 {
  font-family: var(--font-famile-sub);
  font-weight: 600;
  color: var(--blue-text-color);
  font-size: 24px;
  line-height: 26px;
}
.categoryItem__content a {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--blue-text-color);
  font-weight: 700;
  border-bottom: 1px solid var(--blue-text-color);
  position: relative;
  font-size: 15px;
}
.categoryItem__content a::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 9px;
  right: -16px;
  background: url(../icons/arrow-for-link.svg) center/contain no-repeat;
}

@media screen and (max-width: 1900px) {
  .categoryItem {
    padding: 30px;
  }
  .categoryItem__content {
    gap: 20px;
  }
  .categoryItem__content h5 {
    font-size: 22px;
    line-height: 24px;
  }
  .categoryItem__content a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1600px) {
  .categories__list {
    gap: 12px;
  }
  .categories__list-item {
    width: calc((100% - 24px) / 3);
  }
  .categoryItem {
    padding: 40px 20px;
  }
  .categoryItem__content {
    gap: 10px;
  }
  .categoryItem__content h5 {
    font-size: 18px;
    line-height: 20px;
  }
  .categoryItem__content a {
    font-size: 12px;
  }
  .categoryItem__content a::after {
    width: 7px;
    right: -12px;
    background: url(../icons/arrow-for-link.svg) center/contain no-repeat;
  }
}
@media screen and (max-width: 1400px) {
  .categories {
    margin: 0 auto 60px auto;
  }
  .categoryItem {
    padding: 30px 15px;
  }
  .categoryItem__content {
    gap: 10px;
  }
  .categoryItem__content h5 {
    font-size: 15px;
    line-height: 17px;
  }
  .categoryItem__content a {
    font-size: 11px;
    line-height: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .categories__list {
    gap: 8px;
  }
  .categories__list-item {
    width: calc((100% - 16px) / 3);
  }
  .categoryItem {
    gap: 10px;
  }
  .categoryItem__img {
    width: 36;
  }
  .categoryItem__content {
    width: calc(64% - 10px);
  }
  .categoryItem__content h5 {
    font-size: 13px;
    line-height: 15px;
  }
  .categoryItem__content a {
    font-size: 9px;
    line-height: 11px;
  }
}
@media screen and (max-width: 720px) {
  .categories {
    margin: 0 auto 60px auto;
  }
  .categories.home .categories__list-item {
    display: none;
  }
  .categories.home .categories__list-item:nth-child(1), .categories.home .categories__list-item:nth-child(2), .categories.home .categories__list-item:nth-child(3), .categories.home .categories__list-item:nth-child(4), .categories.home .categories__list-item:nth-child(5), .categories.home .categories__list-item:nth-child(6) {
    display: block;
  }
  .categories.home .categories__more {
    display: block;
  }
  .categories__list {
    gap: 12px;
  }
  .categories__list-item {
    width: calc(50% - 6px);
  }
  .categoryItem {
    padding: 40px 15px;
  }
}
@media screen and (max-width: 520px) {
  .categories__list-item {
    width: 100%;
  }
  .categoryItem__content {
    gap: 15px;
  }
  .categoryItem__content h5 {
    font-size: 16px;
    line-height: 18px;
  }
  .categoryItem__content a {
    font-size: 12px;
    line-height: 16px;
  }
}
.popularCategories {
  width: var(--desktop-width);
  margin: 0 auto 100px auto;
  position: relative;
}
.popularCategories__item {
  height: auto !important;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 75px 20px;
  gap: 20px;
  overflow: hidden;
  border-radius: var(--radius-s);
}
.popularCategories__title {
  flex: 1;
  font-family: var(--font-family-sub);
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
  color: var(--white-text-color);
  text-align: center;
}
.popularCategories__img {
  width: 90%;
  height: 240px;
  -o-object-fit: contain;
     object-fit: contain;
}
.popularCategories__btns {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
.popularCategories__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popularCategories__link {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1900px) {
  .popularCategories__item {
    padding: 55px 20px;
    gap: 16px;
  }
  .popularCategories__title {
    font-size: 28px;
    line-height: 32px;
  }
  .popularCategories__img {
    height: 220px;
  }
}
@media screen and (max-width: 1600px) {
  .popularCategories__img {
    height: 180px;
  }
  .popularCategories__title {
    font-size: 20px;
    line-height: 22px;
  }
}
@media screen and (max-width: 1400px) {
  .popularCategories {
    margin: 0 auto 60px auto;
  }
  .popularCategories__item {
    padding: 35px 10px;
  }
  .popularCategories__btns {
    gap: 10px;
  }
  .popularCategories__img {
    height: 160px;
  }
}
@media screen and (max-width: 1200px) {
  .popularCategories__item {
    padding: 20px 10px;
  }
  .popularCategories__title {
    font-size: 16px;
    line-height: 18px;
  }
  .popularCategories__img {
    height: 135px;
  }
  .popularCategories__btns {
    gap: 5px;
  }
  .popularCategories__btns .btn {
    padding: 8px 18px;
    /* font-size: 11px; */
    /* line-height: 12px; */
  }
}
@media screen and (max-width: 1000px) {
  .popularCategories__slider {
    overflow: hidden;
  }
  .popularCategories__slider .swiper-wrapper {
    padding-bottom: 15px;
  }
  .popularCategories__slider-scrollbar {
    top: auto !important;
    bottom: 0;
    height: 5px !important;
    border-radius: 3px;
    background-color: #DEDEDE;
    overflow: hidden;
  }
  .popularCategories__slider-scrollbar .swiper-scrollbar-drag {
    background-color: var(--blue-color) !important;
    border-radius: 3px;
  }
}
@media screen and (max-width: 720px) {
  .popularCategories__item {
    width: 70%;
    min-width: -moz-fit-content;
    min-width: fit-content;
    max-width: 300px;
    padding: 20px 15px;
  }
  .popularCategories__img {
    width: 210px;
    height: 145px;
  }
  .popularCategories__title {
    max-width: 210px;
  }
  .popularCategories__btns .btn {
    /* font-size: 12px; */
    /* line-height: 16px; */
    padding: 10px 20px;
  }
}
.advantages {
  width: var(--desktop-width);
  margin: 0 auto 100px auto;
  padding: 84px 70px;
  border-radius: var(--radius-s);
  background: url(../img/advantages.jpg) center/cover no-repeat;
}
.advantages__title {
  color: var(--white-text-color);
  font-weight: 700;
}
.advantages__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.advantages__item {
  width: calc(25% - 15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 42px;
  border-radius: var(--radius-s);
  border: 1px solid var(--white-color);
  transition: all 0.1s ease-in-out;
}
.advantages__item:hover {
  background: #34A8BB;
  box-shadow: var(--box-shadow);
}
.advantages__item:hover .advantages__img {
  transform: scale(1.2);
}
.advantages__item p {
  text-align: center;
  color: var(--white-text-color);
}
.advantages__img {
  width: 60px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.1s ease-in-out;
}

@media screen and (max-width: 1900px) {
  .advantages__item {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 1600px) {
  .advantages {
    padding: 48px 36px;
  }
  .advantages__container {
    gap: 12px;
  }
  .advantages__title {
    margin-bottom: 20px;
  }
  .advantages__item {
    padding: 25px 16px;
    width: calc(25% - 9px);
    gap: 25px;
  }
  .advantages__item p {
    font-size: 13px;
    line-height: 14px;
  }
}
@media screen and (max-width: 1400px) {
  .advantages {
    margin: 0 auto 60px auto;
  }
  .advantages__item {
    gap: 15px;
  }
  .advantages__item p {
    font-size: 12px;
    line-height: 13px;
  }
  .advantages__img {
    width: 50px;
    height: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .advantages {
    padding: 38px 30px;
  }
  .advantages__container {
    gap: 10px;
  }
  .advantages__item {
    width: calc(25% - 7.5px);
    padding: 32px 6px;
  }
  .advantages__item p {
    font-size: 10px;
    line-height: 12px;
  }
  .advantages__img {
    width: 45px;
    height: 37px;
  }
}
@media screen and (max-width: 1000px) {
  .advantages {
    width: 100%;
  }
  .advantages__container {
    gap: 10px;
  }
}
@media screen and (max-width: 720px) {
  .advantages {
    padding: 40px 16px;
  }
  .advantages__item {
    width: calc((100% - 20px) / 3);
    gap: 15px;
  }
  .advantages__item p {
    font-size: 12px;
  }
  .advantages__img {
    width: 35px;
    height: 30px;
  }
}
@media screen and (max-width: 520px) {
  .advantages__item {
    width: calc(50% - 5px);
    gap: 15px;
  }
  .advantages__item p {
    font-size: 14px;
  }
}
.catalogList {
  width: calc(var(--desktop-width) + 36px);
  margin: 0 auto 100px auto;
}
.catalogList.products {
  width: var(--desktop-width) !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.catalogList.products .catalogList__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.catalogList.products .catalogList__item {
  width: calc((100% - 100px) / 6);
}
.catalogList.products .catalogList__btn {
  display: none !important;
}
.catalogList__title {
  margin-left: 18px;
}
.catalogList__slider {
  width: 100%;
  padding: 0 18px;
  overflow: hidden;
  position: relative;
}
.catalogList__slider::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  height: 100%;
  width: 18px;
  background-image: linear-gradient(90deg, transparent 0%, var(--bg-color) 50%);
}
.catalogList__slider::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 18px;
  background-image: linear-gradient(90deg, var(--bg-color) 50%, transparent 100%);
}
.catalogList__list {
  list-style: none;
  padding-bottom: 15px;
}
.catalogList__item {
  width: calc((100% - 150px) / 6);
}
.catalogList__slider-pagination {
  text-align: center;
}
.catalogList__slider-pagination .swiper-pagination-bullet {
  background-color: var(--cian-color) !important;
  opacity: 0.4;
}
.catalogList__slider-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.1);
}
.catalogList__btn {
  display: none;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.catalogItem {
  box-shadow: var(--box-shadow);
  border-radius: var(--radius-s);
  padding: 16px 16px 27px 16px;
  background: var(--white-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}
.catalogItem__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.catalogItem__header {
  width: 100%;
  display: flex;
  justify-content: end;
  position: relative;
  z-index: 2;
}
.catalogItem__hit {
  background-color: var(--bg-color);
  padding: 3px 11px;
  border-radius: 5px;
  margin-right: auto;
}
.catalogItem__hit span {
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(75deg, var(--cian-color) -10%, var(--dark-color) 75%);
}
.catalogItem__favorite {
  width: 22px;
  height: 22px;
  background: url(../icons/favorite.svg) center/contain no-repeat;
}
.catalogItem__favorite.active {
  background-image: url(../icons/favorite-active.svg);
}
.catalogItem__img {
  flex: 1;
  width: 90%;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
.catalogItem__main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.catalogItem__name {
  color: var(--gray-text-color);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: calc(15px * 2);
      font-weight: 400;
    line-height: 100%;
}
.catalogItem__caption {
  padding-left: 15px;
  color: #9B9B9B;
  position: relative;
}
.catalogItem__caption::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  background-color: var(--cian-color);
}
.catalogItem__caption.notAvailable::before {
  background-color: #9B9B9B;
}
.catalogItem__caption.onlyOrder::before {
  background-color: var(--dark-color);
}
.catalogItem__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.catalogItem__price {
  font-weight: 700;
  color: var(--gray-text-color);
}
.catalogItem__basket {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url(../icons/basket.svg) center/20px no-repeat;
  background-color: var(--bg-color);
  position: relative;
  z-index: 2;
}
.catalogItem__basket.no_quantity, .catalogItem__btn__oneclick.no_quantity, .productPage__tobasket.no_quantity, .catalogItem__btn.no_quantity {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.catalogItem__btn {
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 1900px) {
  .catalogList__item {
    width: calc((100% - 72px) / 6);
  }
  .catalogList.products .catalogList__list {
    gap: 15px;
  }
  .catalogList.products .catalogList__item {
    width: calc((100% - 75px) / 6);
  }
  .catalogItem {
    padding: 12px 12px 20px 12px;
  }
  .catalogItem__price {
    font-size: 14px;
    line-height: 15px;
  }
  .catalogItem__basket {
    width: 26px;
    height: 26px;
    background-size: 16px;
  }
  .catalogItem__img {
    max-height: 130px;
  }
  .catalogItem__caption {
    font-size: 14px;
    line-height: 15px;
    padding-left: 12px;
  }
  .catalogItem__caption::before {
    width: 6px;
    height: 6px;
  }
  .catalogItem__hit {
    padding: 2px 6px;
    border-radius: 4px;
  }
  .catalogItem__hit span {
    font-size: 14px;
    line-height: 15px;
  }
  .catalogItem__favorite {
    width: 18px;
    height: 18px;
  }
  .catalogItem__btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}
@media screen and (max-width: 1600px) {
  .catalogList__list {
    padding-bottom: 5px;
  }
  .catalogList__slider-pagination .swiper-pagination-bullet {
    margin: 0 3px !important;
    width: 6px;
    height: 6px;
  }
  .catalogList.products .catalogList__list {
    gap: 10px;
  }
  .catalogList.products .catalogList__item {
    width: calc((100% - 50px) / 6);
  }
  .catalogItem {
    padding: 10px 10px 16px 10px;
  }
  .catalogItem__price {
    font-size: 12px;
    line-height: 13px;
  }
  .catalogItem__basket {
    width: 22px;
    height: 22px;
    background-size: 14px;
  }
  .catalogItem__img {
    max-height: 120px;
  }
  .catalogItem__name {
    font-size: 13px;
    line-height: 14px;
    height: calc(14px * 2);
  }
  .catalogItem__caption {
    font-size: 12px;
    line-height: 13px;
    padding-left: 10px;
  }
  .catalogItem__caption::before {
    width: 5px;
    height: 5px;
  }
  .catalogItem__hit {
    padding: 2px 4px;
  }
  .catalogItem__hit span {
    font-size: 12px;
    line-height: 13px;
  }
  .catalogItem__favorite {
    width: 16px;
    height: 16px;
  }
  .catalogItem__btn {
    font-size: 12px;
    line-height: 13px;
    padding: 8px 16px;
  }
}
@media screen and (max-width: 1400px) {
  .catalogList {
    width: calc(var(--desktop-width) + 24px);
    margin: 0 auto 60px auto;
  }
  .catalogList__item {
    width: calc((100% - 50px) / 6);
  }
  .catalogList__slider-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }
  .catalogList__slider {
    padding: 12px;
  }
  .catalogList__slider::after, .catalogList__slider::before {
    width: 10px;
  }
  .catalogItem {
    padding: 8px 8px 14px 8px;
    gap: 5px;
    position: relative;
  }
  .catalogItem__header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px;
  }
  .catalogItem__hit {
    padding: 0 2px;
    line-height: 9px;
  }
  .catalogItem__hit span {
    font-size: 9px;
    line-height: 9px;
  }
  .catalogItem__favorite {
    width: 13px;
    height: 13px;
  }
  .catalogItem__main {
    gap: 2px;
  }
  .catalogItem__img {
    margin-top: 10px;
    max-height: 100px;
  }
  .catalogItem__name {
    font-size: 11px;
    line-height: 12px;
    height: calc(12px * 2);
  }
  .catalogItem__caption {
    font-size: 10px;
    line-height: 11px;
  }
  .catalogItem__btn {
    font-size: 10px;
    line-height: 11px;
  }
  .catalogItem__price {
    font-size: 11px;
    line-height: 12px;
  }
  .catalogItem__basket {
    width: 20px;
    height: 20px;
    background-size: 13px;
  }
}
@media screen and (max-width: 1200px) {
  .catalogList__item {
    width: calc((100% - 40px) / 5);
  }
  .catalogList.products .catalogList__item {
    width: calc((100% - 40px) / 5);
  }
}
@media screen and (max-width: 1000px) {
  .catalogList {
    width: var(--desktop-width);
  }
  .catalogList__title {
    margin-left: 0;
  }
  .catalogList__slider {
    padding: 0;
    overflow: visible;
    margin-bottom: 20px;
  }
  .catalogList__slider::after, .catalogList__slider::before {
    display: none;
  }
  .catalogList__list {
    padding-bottom: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  .catalogList__item {
    width: calc((100% - 18px) / 4);
    display: none;
  }
  .catalogList__item:nth-child(1), .catalogList__item:nth-child(2), .catalogList__item:nth-child(3), .catalogList__item:nth-child(4) {
    display: block;
  }
  .catalogList.products .catalogList__list {
    gap: 6px;
  }
  .catalogList.products .catalogList__item {
    width: calc((100% - 18px) / 4);
    display: block !important;
  }
  .catalogList__btn {
    display: block;
  }
}
@media screen and (max-width: 720px) {
  .catalogList__item {
    width: calc((100% - 12px) / 3);
  }
  .catalogList__item:nth-child(4) {
    display: none;
  }
  .catalogList.products .catalogList__item {
    width: calc((100% - 12px) / 3);
  }
  .catalogItem {
    padding: 10px 10px 15px 10px;
    gap: 7px;
  }
  .catalogItem__hit {
    padding: 2px 7px 0 7px;
  }
  .catalogItem__hit span {
    font-size: 10px;
    line-height: 12px;
  }
  .catalogItem__favorite {
    width: 13px;
    height: 13px;
  }
  .catalogItem__name {
    font-size: 14px;
    line-height: 14px;
    height: calc(14px * 2);
  }
  .catalogItem__main {
    gap: 2.2px;
  }
  .catalogItem__caption {
    font-size: 10px;
    line-height: 11px;
  }
  .catalogItem__caption::before {
    width: 5px;
    height: 5px;
  }
  .catalogItem__price {
    font-size: 14px;
    line-height: 14px;
  }
  .catalogItem__basket {
    width: 27px;
    height: 27px;
    background-size: 13px;
  }
  .catalogItem__btn {
    padding: 10px 0;
    width: 100%;
    text-align: center;
    font-size: 12px;
  }
}
@media screen and (max-width: 520px) {
  .catalogList__item {
    width: calc(50% - 3px);
  }
  .catalogList__item:nth-child(4) {
    display: block;
  }
  .catalogList.products .catalogList__item {
    width: calc(50% - 3px);
  }
}
.productPage {
  width: var(--desktop-width);
  margin: 0 auto 100px auto;
}
.productPage__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
.productPage__container .productPage__description {
 padding-top: 0px; 
}
.productPage__description .productPage_title {
 margin-bottom: 0px;
}
.productPage__imgs {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow: hidden;
}
.projects_page  .productPage__container {
  gap: 36px;
}
.projects_page .productPage__imgs {
  display: flex;
  flex-direction: column-reverse;
  flex-basis: 40%;
}
.projects_page .cards-advant__descr{
  flex-basis: 60%;
}
.projects_page .productPage__img-container {
  overflow: hidden;
  width: 100%;
  height: auto;
  max-width: 500px;
}
.projects_page .productPage__nav {
  max-height: fit-content !important;
}
.productPage__img-container {
  position: relative;
  width: 500px;
  height: 500px;
  padding: 20px;
  background-color: var(--white-color);
  border-radius: var(--radius-s);
  box-shadow: var(--box-shadow);
}
.projects_page.projects {
    margin: 0 auto 50px auto;
}
.productPage__img-main {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.productPage__favorite {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 20px;
  display: block;
  width: 30px;
  height: 30px;
  background: url(../icons/favorite.svg) center/contain no-repeat;
  cursor: pointer;
}
.productPage__favorite.active {
  background-image: url(../icons/favorite-active.svg);
}
.productPage__nav {
  height: 500px;
  padding-left: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.productPage__nav-scrollbar {
  position: absolute;
  left: 0 !important;
  transform: scaleX(2.5);
}
.productPage__nav-scrollbar .swiper-scrollbar-drag {
  background-color: var(--blue-color) !important;
}
.productPage__nav-item {
  width: 125px;
  height: 125px;
  padding: 12px;
  background-color: var(--white-color);
  border-radius: var(--radius-s);
  cursor: pointer;
  box-shadow: var(--box-shadow);
}
.productPage__nav-item.active {
  border: 1.5px solid var(--dark-color);
}
.productPage__nav-item:hover {
  border: 1.5px solid var(--dark-color);
}
.productPage__description {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 20px 0 0 0;
  gap: 20px;
}
.productPage__art {
  color: var(--blue-text-color);
  margin-bottom: 20px;
}
.productPage__description-item {
  color: var(--blue-text-color);
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
}
.productPage__subtitle {
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0;
  padding: 0;
  color: car(--dark-text-color);
}
.productPage__underline {
  width: 100%;
  height: 16px;
  margin: 2px;
  /*border-bottom: 1px solid var(--cian-color);*/
  border-bottom: 0px solid var(--cian-color);
}
.productPage__text {
  min-width: 148px;
  max-width: 148px;
  margin: 0;
  padding: 0;
    word-wrap: break-word;
}
.productPage__link {
  color: var(--blue-color);
  text-decoration: underline;
}
.productPage__sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.productPage__sidebar-main {
  width: 270px;
  background: var(--white-color);
  border-radius: var(--radius-s);
  box-shadow: var(--box-shadow);
  padding: 20px;
}
.productPage__price {
  font-size: 24px;
  line-height: 27px;
  color: #A5030E;
  font-weight: 800;
}
.productPage__price.sub {
  display: inline-block;
  margin-left: 10px;
  color: var(--black-text-color);
  text-decoration: line-through;
}
.productPage__subtext {
  /*margin: 0 0 16px 0;*/
  margin: 10px 0 10px 0;
}
.productPage__counter {
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.productPage__counter p {
  margin: 0;
}
.productPage__tobasket {
  white-space: nowrap;
}
.productPage__sidebar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.productPage__sidebar-btn {
  width: 100%;
  text-align: center;
  border-radius: var(--radius-s);
  box-shadow: var(--box-shadow);
}
.productPage__sidebar-btn:hover {
  opacity: 1;
  color: var(--white-text-color);
  background: linear-gradient(75deg, var(--cian-color) -20%, var(--dark-color) 45%);
}

.productDescription {
  width: var(--desktop-width);
  margin: 0 auto 100px auto;
}
.productDescription__slider {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: var(--radius-full);
  outline: 1.5px solid var(--cian-color);
  display: flex;
}
.productDescription__slider label {
  padding: 15px 45px;
  background: linear-gradient(75deg, var(--cian-color) -50%, var(--dark-color) 75%);
  border-radius: var(--radius-full);
  color: var(--white-text-color);
  position: relative;
  z-index: 2;
  font-family: var(--font-family-sub);
  font-size: 26px;
  line-height: 26px;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}
.productDescription__slider label.dimensions {
  background: transparent;
  color: var(--cian-text-color);
}
.productDescription__dimensions p {
      margin-bottom: 10px;
}
.productDescription__slider input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0;
  cursor: pointer;
}
.productDescription__slider input:checked ~ .сharacteristics {
  background: transparent;
  color: var(--cian-text-color);
}
.productDescription__slider input:checked ~ .dimensions {
  background: linear-gradient(75deg, var(--cian-color) -50%, var(--dark-color) 75%);
  color: var(--white-text-color);
}
.productDescription__slider:has(input[type=checkbox]:checked) ~ .productDescription__dimensions {
  display: block;
  word-wrap: break-word;
}
.productDescription__slider:has(input[type=checkbox]:checked) ~ .productDescription__сharacteristics {
  display: none;
}
.productDescription__title {
  margin: 0;
  grid-column: 1/4;
}
.productDescription__сharacteristics {
  margin: 40px 0 0 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr) 580px;
  row-gap: 30px;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.productDescription__сharacteristics .productPage__text {
  min-width: 200px;
}
.productDescription__description {
  grid-column: 1/3;
}
.productDescription__img {
  grid-column: 3/4;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background-color: var(--white-color);
  padding: 20px;
  border-radius: var(--radius-s);
  box-shadow: var(--box-shadow);
}
.productDescription__dimensions {
  margin: 40px 0 0 0;
  display: none;
}
.productDescription__dimensions img {
  object-fit: scale-down;
}
.productDescription__dimensions-text {
  max-width: 469px;
  margin-bottom: 25px;
}
.productDescription__dimensions-main {
  width: 100%;
  max-height: 800px;
  border-radius: var(--radius-s);
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 5px;
}
.productDescription__dimensions-table {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid var(--blue-color);
  border-radius: var(--radius-s);
  background-color: var(--white-color);
  overflow-x: scroll;
}
.productDescription__dimensions-table thead th {
  background-color: var(--blue-color);
  color: var(--white-text-color);
}
.productDescription__dimensions-table thead th:first-child {
  border-radius: var(--radius-s) 0 0 0;
}
.productDescription__dimensions-table thead th:last-child {
  border-radius: 0 var(--radius-s) 0 0;
}
.productDescription__dimensions-table tr td:first-child {
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
.productDescription__dimensions-table th,
.productDescription__dimensions-table td {
  padding: 20px;
  border-right: 2px solid var(--blue-color);
  border-bottom: 2px solid var(--blue-color);
  text-align: center;
  font-size: 15px;
  line-height: 16px;
}
.productDescription__dimensions-table th.pad,
.productDescription__dimensions-table td.pad {
  text-align: start;
  padding: 10px 30px;
}
.productDescription__dimensions-table th:last-child,
.productDescription__dimensions-table td:last-child {
  border-right: none;
}
.productDescription__dimensions-table tr:last-child th,
.productDescription__dimensions-table tr:last-child td {
  border-bottom: none;
}
.productDescription__more {
  display: none;
  position: relative;
  order: 1;
}
.productDescription__more label {
  color: var(--blue-text-color);
  text-decoration: underline;
}
.productDescription__more label.hiiden {
  display: none;
}
.productDescription__more input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0;
  cursor: pointer;
}
.productDescription__more input:checked ~ .show {
  display: none;
}
.productDescription__more input:checked ~ .hiiden {
  display: block;
}
.productDescription__more:has(input[type=checkbox]:checked) ~ .productDescription__hide {
  display: flex !important;
}

@media screen and (max-width: 1900px) {
  .productPage__container {
    gap: 15px;
  }
  .productPage__imgs {
    gap: 15px;
  }
  .productPage__art {
    margin-bottom: 10px;
  }
  .productPage__nav-item {
    width: 78px;
    height: 78px;
  }
  .productPage__img-container {
    width: 340px;
    height: 340px;
  }
  .productPage__nav {
    height: 340px;
    padding-left: 10px;
  }
  .productPage__nav-scrollbar {
    transform: scaleX(1);
  }
  .productPage__subtext {
    /*margin: 0 0 8px 0;*/
  }
  .productPage__subtitle {
    font-size: 14px;
    line-height: 15px;
  }
  .productPage__underline {
    height: 15px;
  }
  .productPage__text {
    font-size: 14px;
    line-height: 15px;
  }
  .productPage__description {
    gap: 15px;
  }
  .productPage__sidebar-main {
    padding: 15px;
    width: 250px;
  }
  .productPage__sidebar-container p {
    font-size: 14px;
    line-height: 15px;
  }
  .productPage__price {
    font-size: 20px;
    line-height: 22px;
  }
  .productPage__subtext {
    font-size: 14px;
    line-height: 15px;
  }
  .productPage__counter {
    margin-bottom: 5px;
  }
  .productPage__tobasket {
    padding: 12px 24px;
    font-size: 14px;
    line-height: 15px;
  }
  .productPage__sidebar-btn {
    padding: 12px 20px;
  }
  .productPage__link {
    font-size: 14px;
    line-height: 15px;
  }
  .productDescription__slider label {
    padding: 12px 36px;
    font-size: 22px;
    line-height: 24px;
  }
  .productDescription__сharacteristics {
    grid-template-columns: repeat(2, 1fr) 36%;
    row-gap: 20px;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media screen and (max-width: 1600px) {
  .productPage__container {
    gap: 10px;
  }
  .productPage__description {
    gap: 10px;
  }
  .productPage__art {
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 14px;
  }
  .productPage__subtitle {
    font-size: 13px;
    line-height: 14px;
  }
  .productPage__underline {
    height: 14px;
  }
  .productPage__text {
    font-size: 13px;
    line-height: 14px;
  }
  .productPage__nav-item {
    width: 70px;
    height: 70px;
  }
  .productPage__img-container {
    width: 270px;
    height: 270px;
  }
  .productPage__nav {
    height: 270px;
  }
  .productPage__subtext {
    font-size: 13px;
    /*margin: 0 0 4px 0;*/
  }
  .productPage__sidebar-main {
    padding: 10px 10px 20px 10px;
    width: 190px;
  }
  .productPage__sidebar-container p {
    font-size: 11px;
    line-height: 12px;
  }
  .productPage__price {
    font-size: 16px;
    line-height: 18px;
  }
  .productPage__counter {
    margin-bottom: 4px;
  }
  .productPage__tobasket {
    padding: 8px 16px;
    font-size: 11px;
    line-height: 12px;
  }
  .productPage__sidebar-btn {
    padding: 7px 16px;
    font-size: 11px;
    line-height: 11px;
  }
  .productPage__link {
    font-size: 11px;
    line-height: 12px;
  }
  .productPage__favorite {
    top: 12px;
    right: 15px;
    width: 20px;
    height: 20px;
  }
  .productDescription__slider label {
    padding: 8px 30px;
    font-size: 16px;
    line-height: 18px;
  }
  .productDescription__сharacteristics {
    row-gap: 15px;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  .productDescription__dimensions-text {
    font-size: 14px;
    line-height: 15px;
  }
  .productDescription__dimensions-table {
    border: 1px solid var(--blue-color);
  }
  .productDescription__dimensions-table th,
  .productDescription__dimensions-table td {
    padding: 12px;
    border-right: 1px solid var(--blue-color);
    border-bottom: 1px solid var(--blue-color);
    font-size: 12px;
    line-height: 13px;
  }
  .productDescription__dimensions-table th.pad,
  .productDescription__dimensions-table td.pad {
    padding: 8px 20px;
  }
}
@media screen and (max-width: 1400px) {
  .productPage {
    margin: 0 auto 60px auto;
  }
  .productPage__container {
    gap: 8px;
  }
  .productPage__description {
    gap: 8px;
  }
  .productPage__art {
    margin-bottom: 6px;
    font-size: 11px;
    line-height: 12px;
  }
  .productPage__subtitle {
    font-size: 11px;
    line-height: 12px;
  }
  .productPage__underline {
    height: 12px;
  }
  .productPage__text {
    min-width: 120px;
    max-width: 120px;
    font-size: 11px;
    line-height: 12px;
  }
  .productPage__nav-item {
    width: 55px;
    height: 55px;
  }
  .productPage__nav-item.active {
    border: 1px solid var(--dark-color);
  }
  .productPage__nav-item:hover {
    border: 1px solid var(--dark-color);
  }
  .productPage__imgs {
    gap: 10px;
  }
  .productPage__img-container {
    width: 220px;
    height: 240px;
    padding: 10px;
  }
  .productPage__nav {
    height: 240px;
  }
  .productPage__favorite {
    top: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
  }
  .productPage__sidebar-main {
    padding-bottom: 15px;
  }
  .productPage__sidebar-container {
    gap: 5px;
  }
  .productPage__sidebar {
    gap: 7px;
  }
  .productPage__tobasket {
    font-size: 9px;
    line-height: 10px;
  }
  .productDescription {
    margin: 0 auto 60px auto;
  }
  .productDescription__slider label {
    padding: 8px 24px;
    font-size: 14px;
    line-height: 15px;
  }
  .productDescription__dimensions-table th,
  .productDescription__dimensions-table td {
    padding: 10px;
    font-size: 12px;
    line-height: 12px;
  }
  .productDescription__dimensions-table th.pad,
  .productDescription__dimensions-table td.pad {
    padding: 8px 16px;
  }
}
@media screen and (max-width: 1200px) {
  .productPage__description {
    gap: 4px;
  }
  .productPage__img-container {
    width: 200px;
    height: 200px;
    padding: 8px;
  }
  .productPage__nav {
    height: 200px;
  }
  .productPage__nav-item {
    width: 45px;
    height: 45px;
    padding: 5px;
  }
  .productPage__sidebar-main {
    padding-bottom: 10px;
  }
  .productPage__sidebar-container {
    gap: 4px;
  }
  .productPage__subtitle {
    font-size: 9px;
    line-height: 10px;
  }
  .productPage__text {
    max-width: 100px;
    min-width: 100px;
    font-size: 9px;
    line-height: 10px;
  }
  .productDescription__сharacteristics {
    grid-template-columns: 1fr 360px;
  }
}
@media screen and (max-width: 1000px) {
  .projects_page .productPage__imgs {
        margin: 0 auto;
  }
  .projects_page .productPage__container {
        flex-direction: column;
  }
  .productPage__container {
    gap: 20px;
  }
  .productPage__img-container {
    height: 342px;
    width: 100%;
  }
  .productPage__imgs {
    width: 60%;
    min-width: 60%;
  }
  .productPage__nav {
    height: 342px;
  }
  .productPage__nav-item {
    width: 78px;
    height: 78px;
  }
  .productPage__description {
    display: none;
  }
  .productPage__sidebar {
    width: calc(40% - 20px);
  }
  .productPage__sidebar-main {
    width: 100%;
    padding: 24px;
  }
  .productPage__sidebar-container {
    gap: 8px;
  }
  .productPage__sidebar {
    gap: 10px;
  }
  .productPage__sidebar-btn {
    font-size: 16px;
    line-height: 16px;
    padding: 15px 30px;
  }
  .productPage__tobasket {
    font-size: 16px;
    line-height: 16px;
    padding: 15px 30px;
  }
  .productPage__sidebar-container p {
    font-size: 15px;
    line-height: 16px;
  }
  .productPage__price {
    font-size: 24px;
    line-height: 26px;
  }
  .productPage__counter {
    margin-bottom: 10px;
  }
  .productDescription__slider label {
    padding: 8px 22px;
    font-size: 18px;
    line-height: 18px;
  }
  .productDescription__dimensions-table th,
  .productDescription__dimensions-table td {
    font-size: 9px;
    line-height: 10px;
    padding: 10px;
  }
  .productDescription__dimensions-table th.pad,
  .productDescription__dimensions-table td.pad {
    padding: 10px;
  }
  .productDescription .productPage__description {
    display: flex;
  }
}
@media screen and (max-width: 720px) {
  .productPage__container {
    gap: 10px;
  }
  .productPage__imgs {
    flex-direction: column-reverse;
  }
  .productPage__img-container {
    height: 255px;
  }
  .productPage__nav {
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 15px;
  }
  .productPage__imgs {
    min-width: 50%;
    width: 50%;
  }
  .productPage__sidebar {
    width: calc(50% - 10px);
  }
  .productPage__sidebar-main {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .productDescription__slider {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    justify-content: space-between;
  }
  .productDescription__slider label {
    white-space: nowrap;
    font-size: 14px;
    line-height: 14px;
  }
  .productDescription__сharacteristics {
    display: flex;
    flex-direction: column;
  }
  .productDescription__dimensions {
    margin: 20px 0 0 0;
  }
  .productDescription .productPage__description {
    gap: 10px;
  }
  .productDescription .productPage__subtitle,
  .productDescription .productPage__text {
    font-size: 12px;
    line-height: 15px;
  }
  .productDescription__more {
    display: block;
  }
  .productDescription__more label {
    font-size: 12px;
    line-height: 15px;
  }
  .productDescription__hide {
    display: none !important;
  }
  .productDescription__img {
    max-width: 360px;
  }
}
.productPage_title_mobile {
      display: none;
}
@media screen and (max-width: 580px) {
  .productPage_title_mobile {
      display: block;
  }
  .productPage_title {
      display: none;
  }
  .productPage__container {
    flex-direction: column;
  }
  .productPage__imgs {
    width: 100%;
  }
  .productPage__sidebar {
    width: 100%;
  }
  .productPage__img-container {
    height: -moz-fit-content;
    height: fit-content;
  }
  .productPage__nav {
    height: -moz-fit-content;
    height: fit-content;
    padding: 0 0 15px 0;
  }
  .productPage__nav-scrollbar {
    position: absolute;
    top: auto !important;
    bottom: 0;
    left: 0 !important;
    height: 5px !important;
    width: 100% !important;
  }
  .productPage__nav-scrollbar .swiper-scrollbar-drag {
    background-color: var(--blue-color) !important;
  }
  .productDescription .productPage__underline {
    min-width: 10%;
  }
  .productDescription .productPage__text {
    min-width: 100px;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 60%;
  }
}
.projects {
  width: calc(var(--desktop-width) + 64px);
  margin: 0 auto 100px auto;
}
.projects_page {
  /*width: 100% !important;*/
}
.projects_page .projects__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.projects_page .projectItem {
  display: flex !important;
  width: calc((100% - 40px) / 3);
}
.projects__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 30px;
}
.projects__title {
  margin: 0 0 0 32px;
}
.projects__more {
  margin: 0 32px 0 0;
  height: -moz-fit-content;
  height: fit-content;
  padding-right: 64px;
  position: relative;
}
.projects__more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 26px;
  height: 10px;
  background: url(../icons/arror-for-btn.svg) center/contain no-repeat;
}
.projects__more_mobile {
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0 auto;
  display: none;
}
.projects__slider {
  position: relative;
  overflow: hidden;
  padding: 0 32px;
}
.projects__slider .swiper-button-next,
.projects__slider .swiper-button-prev {
  top: 0;
  height: calc(100% + 36px);
  background-color: var(--bg-color);
}
.projects__slider .swiper-button-next {
  right: 0;
}
.projects__slider .swiper-button-prev {
  left: 0;
}
.projects__slider .swiper-button-next::after,
.projects__slider .swiper-button-prev::after {
  color: transparent;
  font-size: 0;
  width: 13px;
  height: 22px;
  background: url(../icons/arrow-for-slider.svg) center/contain no-repeat;
}
.projects__slider .swiper-button-prev::after {
  transform: rotate(180deg);
}

.projectItem {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: end;
  position: relative;
}
.projectItem__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.projectItem__img {
  width: 100%;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-s);
}
.projectItem__btn {
  font-weight: 700;
  color: var(--dark-text-color);
  border-bottom: 2px solid var(--dark-text-color);
}

@media screen and (max-width: 1600px) {
  .projectItem {
    gap: 15px;
  }
  .projectItem__img {
    height: 300px;
  }
  .projectItem__btn {
    font-size: 14px;
    line-height: 15px;
  }
}
@media screen and (max-width: 1400px) {
  .projects {
    width: calc(var(--desktop-width) + 40px);
    margin: 0 auto 60px auto;
  }
  .projects_page {
    width: var(--desktop-width);
  }
  .projects__header {
    margin-bottom: 15px;
  }
  .projects__slider {
    padding: 0 20px;
  }
  .projects .swiper-button-next,
  .projects .swiper-button-prev {
    width: 20px;
  }
  .projects .swiper-button-next::after,
  .projects .swiper-button-prev::after {
    width: 10px;
  }
  .projectItem {
    gap: 10px;
  }
  .projectItem__img {
    height: 240px;
  }
  .projectItem__btn {
    font-size: 12px;
    line-height: 13px;
  }
}
@media screen and (max-width: 1200px) {
  .projectItem {
    gap: 10px;
  }
  .projectItem__img {
    height: 200px;
  }
  .projectItem__btn {
    font-size: 11px;
  }
}
@media screen and (max-width: 1000px) {
  .projects {
    width: var(--desktop-width);
  }
  .projects__slider {
    padding: 0;
  }
  .projects__slider .swiper-button-next,
  .projects__slider .swiper-button-prev {
    display: none;
  }
  .projects__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .projectItem {
    width: calc((100% - 20px) / 3);
    display: none;
  }
  .projectItem:nth-child(1), .projectItem:nth-child(2), .projectItem:nth-child(3) {
    display: flex;
  }
}
@media screen and (max-width: 720px) {
  .projects__more {
    display: none;
  }
  .projects__more_mobile {
    display: block;
  }
  .projects_page .projects__list {
    gap: 10px;
  }
  .projects_page .projectItem {
    width: calc((100% - 10px) / 2);
  }
  .projectItem {
    width: calc(50% - 5px);
  }
  .projectItem:nth-child(4) {
    display: flex;
  }
}
@media screen and (max-width: 520px) {
  .projects__list {
    gap: 15px !important;
  }
  .projectItem {
    width: 100% !important;
  }
  .projectItem:nth-child(4) {
    display: none;
  }
}
.conditions {
  width: var(--desktop-width);
  margin: 0 auto 100px auto;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
}
.conditions__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.conditions__container {
  width: 85px;
  height: 85px;
  aspect-ratio: 1/1;
  flex: 1;
  padding: 10px;
  background-color: var(--bg-color);
  box-shadow: var(--box-shadow);
  border-radius: 50%;
  border: 12px solid var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.conditions__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.conditions__text {
  color: var(--gray-text-color);
  text-align: center;
  font-size: 15px;
  line-height: 16px;
}

@media screen and (max-width: 1900px) {
  .conditions__container {
    width: 75px;
    height: 75px;
    border: 10px solid var(--white-color);
  }
  .conditions__text {
    font-size: 14px;
    line-height: 15px;
  }
}
@media screen and (max-width: 1600px) {
  .conditions__container {
    width: 65px;
    height: 65px;
    border: 8px solid var(--white-color);
  }
  .conditions__text {
    font-size: 12px;
    line-height: 13px;
  }
}
@media screen and (max-width: 1400px) {
  .conditions {
    margin: 0 auto 60px auto;
  }
  .conditions__item {
    gap: 20px;
  }
  .conditions__container {
    width: 50px;
    height: 50px;
    border: 5px solid var(--white-color);
  }
  .conditions__text {
    font-size: 10px;
    line-height: 11px;
  }
}
@media screen and (max-width: 1200px) {
  .conditions {
    gap: 15px;
  }
  .conditions__container {
    width: 60px;
    height: 60px;
  }
  .conditions__text {
    font-size: 9px;
    line-height: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .conditions {
    gap: 30px;
    flex-wrap: wrap;
  }
  .conditions__item {
    flex: auto;
    width: calc((100% - 60px) / 3);
  }
  .conditions__container {
    width: 90px;
    height: 90px;
    padding: 15px;
    border: 10px solid var(--white-color);
  }
  .conditions__text {
    font-size: 13px;
    line-height: 14px;
  }
}
@media screen and (max-width: 720px) {
  .conditions__item {
    gap: 15px;
  }
  .conditions__container {
    width: 70px;
    height: 70px;
    padding: 10px;
    border: 8px solid var(--white-color);
  }
  .conditions__text {
    font-size: 12px;
    line-height: 13px;
  }
}
@media screen and (max-width: 520px) {
  .conditions {
    -moz-column-gap: 6px;
         column-gap: 6px;
    row-gap: 28px;
  }
  .conditions__item {
    width: calc(50% - 3px);
  }
  .conditions__container {
    width: 90px;
    height: 90px;
    padding: 12px;
    border: 10px solid var(--white-color);
  }
}
.feedback {
  width: var(--desktop-width);
  border-radius: var(--radius-s);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  background: url(../img/feedback.jpg) center/cover no-repeat;
  padding: 80px 140px;
  margin: 0 auto 100px auto;
}
.feedback__container {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.feedback__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feedback__header h2, .title_feed {
  font-family: var(--font-family-sub);
  color: var(--white-text-color);
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
  text-transform: uppercase;
}
.feedback__header p {
  font-family: var(--font-family-sub);
  color: var(--white-text-color);
  font-weight: 700;
}
.feedback__social {
  flex: 1;
  width: 295px;
  height: 290px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-circle);
}
.feedback__social img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-circle);
}
.feedback__social-mobile {
  display: none;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: start;
  border-radius: var(--radius-circle);
}
.feedback__social-mobile img {
  width: 200px;
  height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: var(--radius-circle);
}
.feedback__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feedback__main {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.feedback__fieldset {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.feedback__input {
  padding: 16px 32px;
  background-color: rgba(255, 255, 255, 0.3019607843);
  color: var(--white-text-color);
  border: 1px solid var(--white-color);
  border-radius: var(--radius-full);
}
.feedback__input::-moz-placeholder {
  color: var(--white-text-color);
}
.feedback__input::placeholder {
  color: var(--white-text-color);
}
.feedback__policy {
  display: flex;
  align-items: center;
}
.feedback__policy input[type=checkbox] {
  width: 14px;
  height: 14px;
  margin-right: 10px;
  border-radius: 2px;
  accent-color: var(--blue-color);
  background-color: var(--white-color);
  cursor: pointer;
}
.feedback__policy label {
  color: var(--white-text-color);
}
.feedback__policy a {
  color: var(--white-text-color);
  text-decoration: underline;
}
.feedback__policy a:hover {
  opacity: 1;
  text-decoration: none;
}
.feedback__btn {
  color: var(--blue-color) !important;
}

@media screen and (max-width: 1900px) {
  .feedback {
    padding: 50px 100px;
  }
  .feedback__container {
    gap: 40px;
  }
  .feedback__input {
    padding: 12px 24px;
  }
  .feedback__main {
    gap: 16px;
  }
}
@media screen and (max-width: 1600px) {
  .feedback {
    padding: 40px 80px;
  }
  .feedback__container {
    gap: 30px;
  }
  .feedback__header {
    gap: 15px;
  }
  .feedback__header h2, .title_feed {
    font-size: 24px;
    line-height: 32px;
  }
  .feedback__header p {
    font-size: 14px;
    line-height: 15px;
  }
  .feedback__fieldset {
    gap: 10px;
  }
  .feedback__input {
    padding: 10px 20px;
    font-size: 13px;
    line-height: 14px;
  }
  .feedback__main {
    gap: 10px;
  }
  .feedback__social {
    width: 220px;
    height: 220px;
  }
  .feedback__policy input[type=checkbox] {
    margin-right: 8px;
  }
  .feedback__policy label {
    font-size: 13px;
    line-height: 14px;
  }
  .feedback__policy a {
    font-size: 13px;
    line-height: 14px;
  }
}
@media screen and (max-width: 1400px) {
  .feedback {
    margin: 0 auto 60px auto;
  }
  .feedback__container {
    gap: 20px;
  }
  .feedback__header {
    gap: 10px;
  }
  .feedback__header h2, .title_feed {
    font-size: 20px;
    line-height: 22px;
  }
  .feedback__header p {
    font-size: 12px;
    line-height: 13px;
  }
  .feedback__input {
    padding: 8px 16px;
    font-size: 11px;
    line-height: 12px;
  }
  .feedback__social {
    width: 180px;
    height: 180px;
  }
  .feedback__policy input[type=checkbox] {
    width: 12px;
    height: 12px;
    margin-right: 6px;
  }
  .feedback__policy label {
    font-size: 12px;
    line-height: 13px;
  }
  .feedback__policy a {
    font-size: 12px;
    line-height: 13px;
  }
  .feedback__btn {
    font-size: 11px !important;
    line-height: 12px !important;
  }
}
@media screen and (max-width: 1200px) {
  .feedback {
    padding: 50px;
  }
  .feedback__social {
    max-width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 800px) {
  .feedback {
    padding: 40px 15px;
    background-image: url(../img/feedback-mobile.jpg);
    gap: 20px;
  }
  .feedback__form {
    gap: 20px;
  }
  .feedback__header {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .feedback__header h2, .title_feed {
    font-size: 17px;
    line-height: 21px;
  }
  .feedback__header p {
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
  }
  .feedback__input {
    border: none;
    padding: 10px 20px;
  }
  .feedback__fieldset {
    flex: 1;
    width: 70%;
    gap: 10px;
    flex-direction: column;
  }
  .feedback__social {
    display: none;
  }
  .feedback__social-mobile {
    display: flex;
  }
  .feedback__input {
    width: 100%;
  }
  .feedback__btn {
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 20px;
  }
  .feedback__policy input[type=checkbox] {
    width: 11px;
    height: 11px;
    margin-right: 4px;
  }
  .feedback__policy label {
    font-size: 12px;
    line-height: 15px;
  }
  .feedback__policy a {
    font-size: 12px;
    line-height: 15px;
  }
}
@media screen and (max-width: 520px) {
  .feedback__main {
    gap: 20px;
  }
  .feedback__social-mobile img {
    width: 84px;
    height: 84px;
  }
}
.about {
  width: var(--desktop-width);
  margin: 0 auto 100px auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 150px;
}
.about__img {
  flex: 1;
  width: 50%;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--radius-s);
}
.about__container {
  flex: 1;
}
.about__text {
  font-size: 20px;
  line-height: 29px;
  color: var(--gray-text-color);
}

@media screen and (max-width: 1900px) {
  .about {
    gap: 100px;
  }
  .about__text {
    font-size: 16px;
    line-height: 22px;
  }
}
@media screen and (max-width: 1600px) {
  .about {
    gap: 70px;
  }
  .about__container .title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1400px) {
  .about {
    margin: 0 auto 60px auto;
  }
  .about__container .title {
    margin-bottom: 15px;
  }
  .about__text {
    font-size: 13px;
    line-height: 19px;
  }
}
@media screen and (max-width: 1200px) {
  .about {
    gap: 30px;
  }
  .about__text {
    font-size: 13px;
    line-height: 17px;
  }
}
@media screen and (max-width: 1000px) {
  .about__text {
    font-size: 15px;
    line-height: 20px;
  }
}
@media screen and (max-width: 720px) {
  .about {
    flex-direction: column;
    align-items: start;
  }
  .about__text {
    font-size: 16px;
    line-height: 22px;
  }
  .about__img {
    width: 80%;
  }
}
@media screen and (max-width: 520px) {
  .about__img {
    width: 100%;
  }
  .about__text {
    font-size: 12px;
    line-height: 15px;
  }
}
.footer {
  background: url(../img/footer.jpg) 100% center/cover no-repeat;
  border-radius: var(--radius-s) var(--radius-s) 0 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__main {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 65px calc((100% - var(--desktop-width)) / 2);
}
.footer__container {
  min-height: 100%;
  width: calc((100% - 90px) / 4);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.footer__container a {
  font-weight: 100;
  color: var(--white-text-color);
  font-size: 18px;
  line-height: 120%;
  /*font-family: var(--font-family-sub);*/
}
.footer__container_contacts {
  gap: 24px;
}
.footer__subtitle {
  font-family: var(--font-family-sub);
  font-size: 28px;
  line-height: 34px;
  color: var(--white-text-color);
  font-weight: 400;
  margin-bottom: 22px;
  text-transform:uppercase;
}
.footer__caption {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  flex: 1;
}
.footer__caption span {
  margin-right: 12px;
}
.footer__caption p,
.footer__caption a,
.footer__caption span,
.footer__caption u {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 300;
  color: var(--caption-text-color);
}
.footer__caption a {
  text-decoration: underline;
}
.footer__contacts {
  display: flex;
  flex-direction: row;
  gap: 35px;
}
.footer__subscribe {
  height: -moz-fit-content;
  height: fit-content;
  font-size: 12px;
  padding: 7px 14px 7px 38px;
  color: var(--caption-text-color) !important;
  border: 1px solid var(--caption-text-color);
  border-radius: var(--radius-full);
  position: relative;
}
.footer__subscribe::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
  width: 14px;
  height: 14px;
  background: url(../icons/telegram-gray.svg) center/contain no-repeat;
}
.footer__phones {
  padding-left: 30px;
  background: url(../icons/phone.svg) 0 0/16px no-repeat;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__phones a {
  color: var(--white-text-color);
}
.footer__place {
  padding-left: 30px;
  background: url(../icons/geo.svg) 0 0/14px no-repeat;
}
.footer__place p {
  color: var(--white-text-color);
}
.footer__icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.footer__icons img {
  height: 35px;
  width: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__captions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px calc((100% - var(--desktop-width)) / 2);
  /*background: #11527D;*/
}
.footer__captions-item:first-child {
  flex-direction: row;
  gap: 40px;
}
.footer__captions-item:first-child  iframe {
  width: 150px;
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer__social img {
  width: 40px;
}

@media screen and (max-width: 1900px) {
  .footer__main {
    padding: 45px calc((100% - var(--desktop-width)) / 2);
  }
}
@media screen and (max-width: 1600px) {
  .footer {
    gap: 30px;
  }
  .footer__main {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }
  .footer__container {
    gap: 6px;
  }
  .footer__container a {
    font-size: 13px;
    line-height: 14px;
  }
  .footer__container_contacts {
    gap: 15px;
  }
  .footer__caption span {
    font-size: 12px;
    line-height: 13px;
    margin-right: 8px;
  }
  .footer__caption p,
  .footer__caption a,
  .footer__caption span,
  .footer__caption u {
    font-size: 12px;
    line-height: 13px;
  }
  .footer__phones {
    padding-left: 20px;
    background-size: 12px;
    gap: 5px;
  }
  .footer__phones a {
    font-size: 12px;
    line-height: 13px;
  }
  .footer__place {
    padding-left: 20px;
    background-size: 10px;
  }
  .footer__place p {
    font-size: 12px;
    line-height: 13px;
  }
  .footer__subtitle {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 1400px) {
  .footer__icons {
    gap: 8px;
  }
  .footer__icons img {
    height: 28px;
    width: 28px;
  }
}
@media screen and (max-width: 1200px) {
  .footer__main {
    padding: 25px calc((100% - var(--desktop-width)) / 2);
  }
  .footer__container {
    gap: 4px;
  }
  .footer__container a {
    font-size: 11px;
    line-height: 12px;
  }
  .footer__caption span {
    font-size: 10px;
    line-height: 11px;
    margin-right: 6px;
  }
  .footer__caption p,
  .footer__caption a,
  .footer__caption span,
  .footer__caption u {
    font-size: 10px;
    line-height: 11px;
  }
  .footer__subtitle {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 14px;
  }
  .footer__icons {
    gap: 6px;
  }
  .footer__icons img {
    height: 23px;
    width: 23px;
  }
  .footer__captions {
    flex-direction: column;
  }
  .footer__captions-item:first-child {
    gap: 20px;
  }
  .footer__captions-item:first-child iframe {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1200px) {
  .footer__caption {
    min-width: 100%;
  }
  .footer__caption:nth-child(1) {
    order: 2;
  }
  .footer__caption:nth-child(2) {
    display: none;
  }
  .footer__caption:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .footer__main {
    flex-wrap: wrap;
  }
  .footer__container {
    min-width: calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
  .footer__caption {
    display: none;
  }
  .footer__captions {
    display: flex;
  }
  .footer__captions .footer__caption {
    display: flex;
  }
}
@media screen and (max-width: 520px) {
  .footer {
    background-image: url(../img/footer-mobile.jpg);
  }
  .footer__main {
    flex-direction: column;
    gap: 30px;
  }
  .footer__container {
    min-width: 100%;
    max-width: 100%;
    gap: 5px;
  }

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

  .footer__contacts a {
    max-width: 150px;
    margin-bottom: 15px;
  }

  .footer__container a {
    font-size: 14px;
    line-height: 14px;
  }
  .footer__container_contacts .footer__subtitle {
    font-size: 28px;
    line-height: 36px;
  }
  .footer__subtitle {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 17px;
  }
}
.modal {
  display: none;
}
.modal.reg .modal__fieldset {
  padding: 0 70px;
}
.modal.reg .modal__form {
  max-width: 780px;
}
.modal.call .modal__form {
  max-width: 1100px;
}
.modal.open {
  display: block;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--overlay-index);
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
}
.modal__form {
  padding: 75px;
  overflow-y: scroll;
  width: 90%;
  max-height: 90%;
  border-radius: var(--radius-l);
  background-color: var(--blue-color);
  max-width: 660px;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: var(--modal-index);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal__form::-webkit-scrollbar {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
}
.modal__form::-webkit-scrollbar-track {
  background: transparent;
}
.modal__form::-webkit-scrollbar-thumb {
  background: var(--white-color);
  border-radius: var(--radius-full);
  border: none;
}
.modal__row {
  display: flex;
  width: 100%;
  gap: 7px;
}
.modal__fieldset {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 7px;
  width: 100%;
}
.modal__eye {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: 18px;
  height: 18px;
  background: url(../icons/show.png) 0 center/contain no-repeat;
}
.modal__password {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
.modal__password.open .modal__eye {
  background-image: url(../icons/hidden.png);
}
.modal__input {
  width: 100%;
  background-color: var(--white-color);
  border-radius: var(--radius-full);
  padding: 15px 35px;
}
.modal__input.message {
  flex: 1;
  min-height: 100%;
  border-radius: var(--radius-l);
}
.modal__checkbox {
  display: flex;
  align-items: start;
  color: var(--white-text-color);
  margin-bottom: 23px;
}
.modal__checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  accent-color: var(--dark-color);
  background-color: var(--white-color);
  cursor: pointer;
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.modal__close img {
  width: 18px;
  height: 18px;
  aspect-ratio: 1/1;
}
.modal__title {
  color: var(--white-text-color);
  font-size: 32px;
  font-weight: 700;
  line-height: 25px;
}
.modal__title.center {
  width: 100%;
  text-align: center;
}
.modal__text {
  color: var(--white-text-color);
  font-size: 22px;
  line-height: 21px;
}
.modal__subtext {
  max-width: 50%;
  color: var(--white-text-color);
}
.modal__help {
  color: var(--white-text-color);
  margin: 4px 0 16px 0;
  width: 100%;
  text-align: center;
}
.modal__footer {
  display: flex;
  width: 100%;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.modal__btn {
  flex: 1;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 15px 40px;
}
.modal__btn.w100 {
  width: 100%;
  max-width: 100%;
}
.modal__slider {
  width: 100%;
  display: flex;
  align-items: center;
}
.modal__slider button {
  flex: 1;
  background-color: var(--white-color);
  border-radius: var(--radius-full);
  color: var(--dark-text-color);
  border: 1px solid var(--dark-color);
}
.modal__slider button.active {
  color: var(--white-text-color);
  background-color: var(--dark-color);
  position: relative;
  z-index: 2;
}
.modal__slider button:first-child {
  padding: 10px 60px 10px 30px;
  margin: 0 -30px 0 0;
}
.modal__slider button:first-child.active {
  padding: 10px 30px;
}
.modal__slider button:last-child {
  padding: 10px 30px 10px 60px;
  margin: 0 0 0 -30px;
}
.modal__slider button:last-child.active {
  padding: 10px 30px;
}
.modal__slider button:hover {
  opacity: 1;
}

@media screen and (max-width: 1600px) {
  .modal__eye {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 1000px) {
  .modal__form {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    min-width: 100%;
    min-height: 100%;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0;
  }
  .modal__fieldset {
    flex: 0;
    padding: 0 !important;
  }
  .modal__overlay {
    display: none;
  }
  .modal__close img {
    filter: invert(1) brightness(5);
  }
  .modal__row {
    flex-direction: column;
  }
  .modal__input {
    border-radius: var(--radius-l);
    padding: 12px 30px;
  }
  .modal__input.message {
    min-height: 120px;
  }
  .modal__slider button {
    font-size: 13px;
  }
  .modal__slider button:first-child {
    padding: 8px 30px 8px 15px;
    margin: 0 -15px 0 0;
  }
  .modal__slider button:first-child.active {
    padding: 8px 15px;
  }
  .modal__slider button:last-child {
    padding: 8px 15px 8px 30px;
    margin: 0 0 0 -15px;
  }
  .modal__slider button:last-child.active {
    padding: 8px 15px;
  }
}
.breadcrumb {
  padding: 0 calc((100% - var(--desktop-width)) / 2);
  margin: 0 0 40px 0;
  display: flex;
  gap: 50px;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 5px;
}
.breadcrumb__item {
  position: relative;
}
.breadcrumb__item::after {
  content: "";
  position: absolute;
  width: 20px;
  border-bottom: 1px solid var(--blue-color);
  right: -35px;
  top: 50%;
}
.breadcrumb__item:last-child {
  cursor: default;
}
.breadcrumb__item:last-child:hover {
  opacity: 1;
}
.breadcrumb__item:last-child::after {
  display: none;
}

@media screen and (max-width: 1600px) {
  .breadcrumb {
    margin: 0 0 30px 0;
    gap: 40px;
    row-gap: 5px;
  }
  .breadcrumb__item {
    position: relative;
    font-size: 14px;
    line-height: 16px;
  }
  .breadcrumb__item::after {
    width: 16px;
    right: -27px;
  }
}
@media screen and (max-width: 1400px) {
  .breadcrumb {
    margin: 0 0 20px 0;
    gap: 30px;
    row-gap: 5px;
  }
  .breadcrumb__item {
    position: relative;
    font-size: 11px;
    line-height: 13px;
  }
  .breadcrumb__item::after {
    width: 10px;
    right: -20px;
  }
}
@media screen and (max-width: 1000px) {
  .breadcrumb {
    display: none;
  }
}
.policy {
  padding: 50px calc((100% - var(--desktop-width)) / 2);
}
/* .policy h1 {
  font-size: 32px;
  line-height: 34px;
  margin-bottom: 30px;
} */
.policy__title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
}
.policy__numList.main {
  padding: 0;
}
.policy__numList.main li {
  font-size: 22px;
  font-weight: 700;
}
.policy__numList.sub {
  padding-left: 30px;
}
.policy__numList.sub li {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
.policy__numList.podsub {
  padding-left: 30px;
}
.policy__numList ul.sub {
  padding-left: 15px;
  list-style: disc;
}
.policy__numList ul.podsub {
  padding-left: 15px;
  list-style: circle;
}
.policy p {
  line-height: 24px;
  margin-bottom: 12px;
  font-weight: 400;
}
.policy__btn {
  display: block;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  color: white;
  background-color: var(--blue);
  padding: 11px 35px;
  border-radius: 100px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
  .policy {
    padding-left: 40px;
  }
  /* .policy h1 {
    margin-left: -20px;
  } */
  .policy__numList.sub {
    padding-left: 20px;
  }
  .policy__numList.podsub {
    padding-left: 20px;
  }
}
@media screen and (max-width: 800px) {
  .policy {
    padding: 20px 20px 50px 40px;
  }
  /* .policy h1 {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 10px;
  } */
}
@media screen and (max-width: 420px) {
  /* .policy h1 {
    font-size: 20px;
    line-height: 24px;
  } */
  .policy .title {
    padding: 0;
  }
  .policy__title {
    font-size: 22px;
    margin-top: 20px;
  }
  .policy p {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 0px;
  }
  .policy__numList.sub {
    padding-left: 20px;
  }
  .policy__numList.podsub {
    padding-left: 20px;
  }
}
.profile {
  position: relative;
  display: flex;
  flex-direction: column;
  width: var(--desktop-width);
  margin: 0 auto 100px auto;
  gap: 15px;
}
.profile__title {
  color: var(--dark-text-color);
  font-weight: 700;
  margin: 0;
}
.profile__container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.profile__data {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.profile__subtitle {
  font-family: var(--font-family-sub);
  color: var(--dark-text-color);
  font-size: 32px;
  line-height: 32px;
  font-weight: 400;
  -webkit-text-stroke: 0.9px var(--dark-text-color);
}
.profile__form {
  width: 100%;
  max-width: 735px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.profile__fieldset {
  display: flex;
  flex-direction: row;
  gap: 25px;
}
.profile__label {
  min-width: 105px;
  padding: 20px 0;
}
.profile__label.password {
  min-width: 200px;
}
.profile__input {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  outline: none;
  border: 2px solid var(--blue-color);
  color: var(--blue-color);
  border-radius: var(--radius-full);
  padding: 17px 35px;
}
.profile__input::-moz-placeholder {
  color: var(--blue-color);
}
.profile__input::placeholder {
  color: var(--blue-color);
}
.profile__email {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.profile__checkbox {
  color: var(--blue-color);
  font-size: 15px;
  line-height: 17px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 15px;
}
.profile__checkbox input[type=checkbox] {
  width: 21px;
  height: 21px;
  border-radius: 2px;
  accent-color: var(--blue-color);
  background-color: var(--white-color);
  cursor: pointer;
}
.profile__save {
  margin: 20px 0 0 auto;
  padding: 14px 100px;
}

@media screen and (max-width: 1900px) {
  .profile__title {
    font-size: 28px;
    line-height: 32px;
  }
  .profile__subtitle {
    font-size: 24px;
    line-height: 28px;
  }
}
@media screen and (max-width: 1600px) {
  .profile__container {
    gap: 12px;
  }
  .profile__title {
    font-size: 22px;
    line-height: 26px;
  }
  .profile__subtitle {
    font-size: 18px;
    line-height: 21px;
  }
  .profile__data {
    gap: 12px;
  }
  .profile__label {
    min-width: 90px;
    font-size: 12px;
    line-height: 13px;
    padding: 8px 0;
  }
  .profile__input {
    padding: 10px 20px;
    border: 1px solid var(--blue-color);
    font-size: 12px;
    line-height: 13px;
  }
  .profile__input::-moz-placeholder {
    font-size: 12px;
    line-height: 13px;
  }
  .profile__input::placeholder {
    font-size: 12px;
    line-height: 13px;
  }
  .profile__checkbox {
    font-size: 13px;
    line-height: 14px;
  }
  .profile__checkbox input[type=checkbox] {
    width: 15px;
    height: 15px;
  }
  .profile__save {
    font-size: 13px;
    line-height: 13px;
    padding: 10px 40px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 1400px) {
  .profile {
    margin: 0 auto 60px auto;
  }
  .profile__input {
    padding: 8px 20px;
    font-size: 11px;
    line-height: 12px;
  }
  .profile__input::-moz-placeholder {
    font-size: 11px;
    line-height: 12px;
  }
  .profile__input::placeholder {
    font-size: 11px;
    line-height: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .profile__title {
    font-size: 20px;
    line-height: 24px;
  }
  .profile__subtitle {
    font-size: 16px;
    line-height: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .profile__fieldset {
    flex-direction: column;
    gap: 10px;
  }
  .profile__label {
    padding: 0;
  }
  .profile__subtitle {
    font-size: 18px;
    line-height: 21px;
  }
  .profile__form {
    gap: 10px;
  }
  .profile__input {
    padding: 12px 20px;
  }
  .profile__checkbox {
    margin-bottom: 10px;
    align-items: center;
  }
  .profile__checkbox input[type=checkbox] {
    width: 14px;
    height: 14px;
  }
  .profile__save {
    padding: 10px 40px;
    margin-top: 0;
  }
}
@media screen and (max-width: 720px) {
  .profile__container {
    flex-direction: column;
  }
  .profile__subtitle {
    font-size: 20px;
    line-height: 24px;
  }
  .profile__label {
    font-size: 12px;
    line-height: 15px;
  }
  .profile__input {
    font-size: 12px;
    line-height: 15px;
    padding: 12px 20px;
  }
  .profile__checkbox {
    font-size: 12px;
    line-height: 15px;
    align-items: end;
  }
}
.sidebar {
  max-width: 375px;
  min-width: 375px;
  display: flex;
  justify-content: start;
  flex-direction: column;
  gap: 20px;
}
.sidebar__nav {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-l);
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}
.sidebar__link {
  font-size: 15px;
  line-height: 17px;
  padding: 16px 35px;
  border-top: 1.5px solid var(--blue-color);
}
.sidebar__link:hover {
  opacity: 1;
  background: var(--bg-color);
}
.sidebar__link.active {
  border-color: transparent;
  background: var(--gradient-dark);
  color: var(--white-text-color);
}
.sidebar__link.active:hover {
  border-color: transparent;
  background: var(--gradient-dark);
  color: var(--white-text-color);
}
.sidebar__link:first-child {
  border: none;
}
.sidebar__tp {
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  background-color: var(--white-color);
  border-radius: var(--radius-l);
  box-shadow: var(--box-shadow);
}
.sidebar__tp p {
  font-size: 16px;
  line-height: 21px;
}
.sidebar__tp-title {
  font-size: 32px;
  line-height: 32px;
}
.sidebar__tp-img {
  height: 150px;
  width: 150px;
  margin: 0 auto;
}

@media screen and (max-width: 1600px) {
  .sidebar {
    max-width: 270px;
    min-width: 270px;
    gap: 12px;
  }
  .sidebar__tp-img {
    width: 130px;
    height: 130px;
  }
  .sidebar__link {
    font-size: 13px;
    line-height: 15px;
    padding: 12px 28px;
    border-top: 1px solid var(--blue-color);
  }
  .sidebar__tp {
    padding: 25px;
    gap: 15px;
  }
  .sidebar__tp p {
    font-size: 14px;
    line-height: 17px;
  }
  .sidebar__tp-title {
    font-size: 22px;
    line-height: 22px;
  }
}
@media screen and (max-width: 1400px) {
  .sidebar {
    max-width: 200px;
    min-width: 200px;
  }
  .sidebar__tp-img {
    width: 90px;
    height: 90px;
  }
  .sidebar__link {
    font-size: 11px;
    line-height: 13px;
    padding: 10px 16px;
  }
  .sidebar__tp {
    padding: 16px;
    gap: 12px;
  }
  .sidebar__tp p {
    font-size: 12px;
    line-height: 13px;
  }
  .sidebar__tp-title {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 720px) {
  .sidebar {
    max-width: 100%;
    min-width: 100%;
    flex-direction: row;
  }
  .sidebar__nav {
    width: 100%;
    justify-content: space-between;
  }
  .sidebar__link {
    font-size: 12px;
    line-height: 15px;
    padding: 17px 24px;
    border-top: 1px solid var(--blue-color);
  }
  .sidebar__tp {
    width: 100%;
  }
  .sidebar__tp p {
    font-size: 12px;
    line-height: 15px;
  }
  .sidebar__tp-img {
    width: 115px;
    height: 115px;
  }
  .sidebar__tp-title {
    font-size: 17px;
    line-height: 17px;
  }
}
@media screen and (max-width: 520px) {
  .sidebar {
    flex-direction: column;
  }
  .sidebar__link {
    padding: 8px 20px;
    position: relative;
  }
  .sidebar__link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 5px;
    height: 10px;
    background: url(/icons/arrow-for-slider.svg) center/contain no-repeat;
  }
  .sidebar__link.active::after {
    display: none;
  }
}
.profileCart__header {
  width: 100%;
  padding: 0 10px 0 40px;
  gap: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.profileCart__title {
  font-weight: 800;
  flex: 1;
  color: var(--blue-text-color);
  text-transform: uppercase;
}
.profileCart__title:first-child {
  flex: 3;
}
.profileCart__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background-color: var(--white-color);
  padding: 20px;
  border-radius: var(--radius-l);
  box-shadow: var(--box-shadow);
}
.profileCart__footer {
  width: 100%;
  padding: 0 0 0 65px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.profileCart__date {
  font-size: 15px;
  line-height: 16px;
  color: var(--blue-text-color);
  font-weight: 400;
}
.profileCart__total {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 20px;
}
.profileCart__buy {
  font-size: 38px;
  line-height: 47px;
  color: var(--blue-text-color);
  font-weight: 700;
}
.profileCart__buy span {
  text-transform: uppercase;
  font-size: 38px;
  line-height: 47px;
  color: var(--black-color);
  font-weight: 700;
}
.profileCart__save {
  padding: 15px 60px;
  margin-left: auto;
}
.profileCart__sub {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.profileCart__sub .profile__form {
  max-width: 100%;
}
.profileCart__sub .profile__subtitle {
  color: black;
}
.profileCart__delivery {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.profileCart__radio-item {
  display: flex;
  gap: 40px;
  align-items: center;
}
.profileCart__radio-item input[type=radio] {
  outline: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 28px;
  height: 28px;
}
.profileCart__radio-item input[type=radio]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 2px solid var(--cian-color);
  background-color: var(--white-color);
}
.profileCart__radio-item input[type=radio]:checked::after {
  background-color: var(--cian-color);
}
.profileCart__dropdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(100% - 80px);
  padding: 16px 30px;
  border-radius: var(--radius-m);
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  position: relative;
}
.profileCart__dropdown.open .profileCart__dropdown-btn {
  transform: rotate(180deg);
}
.profileCart__dropdown.open .profileCart__dropdown-item {
  display: block;
}
.profileCart__dropdown-btn {
  position: absolute;
  top: 20px;
  right: -50px;
  width: 20px;
  height: 12px;
  background: url(../icons/arrow-for-delivery-dropdown.svg) center/contain no-repeat;
  transition: all 0.2s ease-in-out;
}
.profileCart__dropdown-item {
  display: none;
  width: -moz-fit-content;
  width: fit-content;
  text-align: start;
}
.profileCart__dropdown-item:first-child {
  display: block;
}
.profileCart__dropdown-item a {
  font-size: inherit;
  line-height: inherit;
}

@media screen and (max-width: 1900px) {
  .profileCart__header {
    gap: 30px;
  }
  .profileCart__title:first-child {
    flex: 5;
  }
  .profileCart__buy {
    font-size: 24px;
    line-height: 26px;
  }
  .profileCart__buy span {
    font-size: 24px;
    line-height: 26px;
  }
  .profileCart__list {
    padding: 12px;
  }
  .profileCart__delivery {
    padding-left: 30px;
    gap: 15px;
  }
  .profileCart__radio-item {
    gap: 30px;
  }
  .profileCart__radio-item input[type=radio] {
    width: 20px;
    height: 20px;
  }
  .profileCart__radio-item input[type=radio]::after {
    border: 1px solid var(--cian-color);
  }
  .profileCart__radio-item label {
    font-size: 14px;
    line-height: 15px;
  }
  .profileCart__dropdown {
    gap: 8px;
    padding: 12px 24px;
  }
  .profileCart__dropdown-btn {
    top: 14px;
    height: 10px;
    width: 18px;
  }
  .profileCart__dropdown-item {
    font-size: 14px;
    line-height: 15px;
  }
  .profileCart__save {
    padding: 12px 45px;
    font-size: 14px;
    line-height: 15px;
  }
}
@media screen and (max-width: 1600px) {
  .profileCart__title {
    font-size: 14px;
    line-height: 16px;
  }
  .profileCart__buy {
    font-size: 18px;
    line-height: 20px;
  }
  .profileCart__buy span {
    font-size: 18px;
    line-height: 20px;
  }
  .profileCart__footer {
    margin-bottom: 20px;
  }
  .profileCart__dropdown {
    width: calc(100% - 30px);
  }
  .profileCart__dropdown-btn {
    right: -30px;
  }
  .profileCart__dropdown-item {
    font-size: 12px;
    line-height: 13px;
  }
  .profileCart__save {
    padding: 12px 36px;
    font-size: 13px;
    line-height: 14px;
  }
}
@media screen and (max-width: 1400px) {
  .profileCart__title {
    font-size: 13px;
    line-height: 14px;
  }
  .profileCart__date {
    font-size: 11px;
    line-height: 12px;
  }
  .profileCart__buy {
    font-size: 16px;
    line-height: 18px;
  }
  .profileCart__buy span {
    font-size: 16px;
    line-height: 18px;
  }
  .profileCart__footer {
    margin-bottom: 16px;
  }
  .profileCart__delivery {
    padding-left: 20px;
    gap: 12px;
  }
  .profileCart__radio-item {
    gap: 20px;
  }
  .profileCart__radio-item input[type=radio] {
    width: 16px;
    height: 16px;
  }
  .profileCart__radio-item label {
    font-size: 12px;
    line-height: 13px;
  }
  .profileCart__save {
    padding: 9px 30px;
    font-size: 12px;
    line-height: 13px;
  }
}
@media screen and (max-width: 1200px) {
  .profileCart__header {
    display: none;
  }
  .profileCart__list {
    padding: 10px;
    gap: 20px;
  }
  .profileCart__save {
    padding: 8px 24px;
    font-size: 11px;
    line-height: 12px;
  }
}
@media screen and (max-width: 1000px) {
  .profileCart__footer {
    padding-left: 20px;
  }
  .profileCart__total {
    gap: 10px;
  }
  .profileCart__save {
    padding: 10px 30px;
    font-size: 12px;
    line-height: 14px;
  }
  .profileCart__list {
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
}
@media screen and (max-width: 520px) {
  .profileCart__footer {
    padding: 0;
    width: 100%;
    flex-direction: column;
  }
  .profileCart__total {
    width: 100%;
    align-items: start;
  }
  .profileCart__save {
    margin-left: auto;
  }
}
.cartItem {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 100px;
}
.cartItem__product {
  flex: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.cartItem__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cartItem__left-btns {
  width: 100%;
  display: none;
  flex-direction: row;
  justify-content: space-around;
}
.cartItem__img {
  width: 100px;
  height: 100px;
  padding: 10px;
  border-radius: var(--radius-m);
  border: 1.5px solid var(--cian-color);
  background-color: var(--white-color);
}
.cartItem__description {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cartItem__name {
  font-size: 15px;
  line-height: 17px;
}
.cartItem__info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.cartItem__btns {
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.cartItem__btn {
  width: 27px;
  height: 25px;
}
.cartItem__btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cartItem__availability {
  flex: 1;
  color: var(--blue-text-color);
}
.cartItem__art {
  color: var(--cian-text-color);
}
.cartItem__price {
  flex: 1;
  font-family: var(--font-famile-sub);
  font-size: 24px;
  line-height: 27px;
  font-weight: 500;
}
.cartItem__counter {
  flex: 1;
}

@media screen and (max-width: 1900px) {
  .cartItem {
    gap: 30px;
  }
  .cartItem__product {
    flex: 5;
  }
  .cartItem__img {
    width: 80px;
    height: 80px;
    padding: 5px;
  }
  .cartItem__name {
    font-size: 14px;
    line-height: 15px;
  }
  .cartItem__price {
    font-size: 20px;
    line-height: 22px;
  }
  .cartItem__info {
    gap: 8px;
  }
  .cartItem__btn {
    width: 20px;
    height: 20px;
  }
  .cartItem__availability {
    font-size: 13px;
    line-height: 15px;
  }
  .cartItem__art {
    font-size: 13px;
    line-height: 15px;
  }
}
@media screen and (max-width: 1400px) {
  .cartItem {
    gap: 24px;
  }
  .cartItem__product {
    gap: 8px;
  }
  .cartItem__description {
    gap: 8px;
  }
  .cartItem__img {
    width: 60px;
    height: 60px;
  }
  .cartItem__name {
    font-size: 9px;
    line-height: 10px;
  }
  .cartItem__price {
    font-size: 15px;
    line-height: 16px;
  }
  .cartItem__info {
    gap: 5px;
  }
  .cartItem__btn {
    width: 14px;
    height: 14px;
  }
  .cartItem__availability {
    font-size: 9px;
    line-height: 10px;
  }
  .cartItem__art {
    font-size: 9px;
    line-height: 10px;
  }
  .cartItem__counter .counter {
    height: 25px;
  }
  .cartItem__counter .counter__btn {
    width: 30px;
    font-size: 12px;
    line-height: 14px;
    border: 1px solid var(--blue-color);
    padding: 0 10px;
    border-radius: 10px 0 0 10px;
  }
  .cartItem__counter .counter__btn.right {
    border-radius: 0 10px 10px 0;
  }
  .cartItem__counter .counter__input {
    width: 45px;
    border-top: 1px solid var(--blue-color);
    border-bottom: 1px solid var(--blue-color);
  }
}
@media screen and (max-width: 1200px) {
  .cartItem {
    flex-wrap: wrap;
    justify-content: end;
    row-gap: 0px;
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
  .cartItem__product {
    min-width: 100%;
  }
  .cartItem__price {
    flex: 0;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
  .cartItem__counter {
    flex: 0;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}
@media screen and (max-width: 1000px) {
  .cartItem__info {
    gap: 15px;
    flex-direction: row;
    align-items: center;
  }
  .cartItem__btns {
    gap: 15px;
  }
}
@media screen and (max-width: 850px) {
  .cartItem__info {
    gap: 0;
    flex-direction: column;
    align-items: start;
  }
  .cartItem__btns {
    gap: 10px;
  }
}
@media screen and (max-width: 720px) {
  .cartItem__left-btns {
    display: flex;
  }
  .cartItem__img {
    width: 70px;
    height: 70px;
  }
  .cartItem__btns {
    display: none;
  }
  .cartItem__btn {
    height: 17px;
    width: 19px;
  }
  .cartItem__description {
    gap: 6px;
  }
  .cartItem__info {
    gap: 6px;
  }
  .cartItem__availability {
    font-size: 12px;
    line-height: 15px;
    order: 1;
    color: var(--cian-text-color);
  }
  .cartItem__name {
    font-size: 12px;
    line-height: 15px;
  }
  .cartItem__price {
    font-size: 16px;
    line-height: 18px;
  }
  .cartItem__art {
    font-size: 12px;
    line-height: 15px;
  }
}
.profileFavorites {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.profileFavorites__item {
  width: calc((100% - 60px) / 4);
}

@media screen and (max-width: 1600px) {
  .profileFavorites {
    gap: 12px;
  }
  .profileFavorites__item {
    width: calc((100% - 36px) / 4);
  }
}
@media screen and (max-width: 1200px) {
  .profileFavorites {
    gap: 12px;
  }
  .profileFavorites__item {
    width: calc((100% - 24px) / 3);
  }
}
@media screen and (max-width: 1000px) {
  .profileFavorites {
    gap: 6px;
  }
  .profileFavorites__item {
    width: calc((100% - 12px) / 3);
  }
}
@media screen and (max-width: 900px) {
  .profileFavorites__item {
    width: calc(50% - 3px);
  }
}
@media screen and (max-width: 720px) {
  .profileFavorites__item {
    width: calc((100% - 12px) / 3);
  }
}
@media screen and (max-width: 580px) {
  .profileFavorites__item {
    width: calc(50% - 3px);
  }
}
.profileOrders__orders {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.profileOrders__list {
  display: none;
  list-style: none;
  flex-direction: column;
  gap: 7px;
}
.profileOrders__count {
  width: 157px;
  padding: 8px 0;
  text-align: center;
  border-radius: var(--radius-full);
  border: 2px solid var(--blue-color);
  color: var(--blue-text-color);
}
.profileOrders__item .cartItem {
  border-bottom: 1px solid var(--cian-color);
}

.order {
  padding: 20px 0;
  background-color: var(--white-color);
  border-radius: var(--radius-l);
  box-shadow: var(--box-shadow);
}
.order.open .profileOrders__list {
  display: flex;
}
.order.open .order__open-btn {
  transform: rotate(-90deg);
}
.order__header {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.order__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 50px;
}
.order__row:first-child {
  padding-top: 21px;
}
.order__row_client {
  margin-top: 10px;
}
.order__status {
  font-weight: 700;
  padding: 8px 47px;
  border-radius: var(--radius-full);
  background: rgba(74, 74, 74, 0.1098039216);
  color: #848484;
  border: 1.5px solid #848484;
}
.order__status.green {
  background: rgba(17, 96, 34, 0.1098039216);
  color: #116022;
  border: 1.5px solid #116022;
}
.order__open-btn {
  position: absolute;
  top: 0;
  right: 20px;
  width: 18px;
  height: 10px;
  background: url(../icons/arrow-for-slider.svg) center/contain no-repeat;
  animation: 0.2 all ease-in-out;
  transform: rotate(90deg);
}
.order__list {
  padding: 0 20px 20px 20px;
}
.order__footer {
  padding: 15px 20px 0 20px;
  border-top: 1.5px solid var(--cian-color);
  display: flex;
  align-items: center;
  gap: 70px;
}
.order__btn {
  display: flex;
  align-items: center;
  gap: 13px;
}
.order__icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1600px) {
  .profileOrders__list {
    gap: 20px;
  }
  .order {
    padding: 15px 0;
  }
  .order__row {
    gap: 30px;
  }
  .order__footer {
    padding-top: 10px;
    gap: 50px;
  }
}
@media screen and (max-width: 1400px) {
  .profileOrders__list {
    gap: 15px;
  }
  .profileOrders__count {
    width: 100px;
    padding: 6px 0;
    border: 1px solid var(--blue-color);
    font-size: 13px;
    line-height: 14px;
  }
  .order {
    padding: 12px 0;
  }
  .order__header {
    gap: 10px;
    margin-bottom: 10px;
  }
  .order__status {
    font-size: 13px;
    line-height: 14px;
    padding: 6px 24px;
    border: 1px solid #848484;
  }
  .order__status.green {
    border: 1px solid #116022;
  }
  .order__title {
    font-size: 13px;
    line-height: 14px;
  }
  .order__subtitle {
    font-size: 13px;
    line-height: 14px;
  }
  .order__btn {
    gap: 10px;
  }
  .order__btn a {
    font-size: 13px;
    line-height: 14px;
  }
  .order__icon {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .order__row {
    gap: 10px;
  }
  .order__row.two {
    gap: 5px;
    flex-direction: column-reverse;
    align-items: start;
  }
  .order__footer {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 720px) {
  .profileOrders__orders {
    width: calc(100% + 32px);
    margin: 0 -16px;
  }
  .profileOrders__list {
    gap: 20px;
  }
  .profileOrders__count {
    width: -moz-fit-content;
    width: fit-content;
    padding: 5px 30px;
  }
  .order__link {
    font-size: 12px;
    line-height: 15px;
  }
  .order__icon {
    width: 17px;
    height: 17px;
  }
}
.deliveryList {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deliveryItem {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: var(--radius-l);
  background-color: var(--white-color);
  padding: 25px 40px;
  box-shadow: var(--box-shadow);
}
.deliveryItem__checkbox {
  width: 28px;
  height: 28px;
  accent-color: var(--blue-color);
}
.deliveryItem p {
  flex: 1;
}
.deliveryItem__delete {
  width: 28px;
  height: 28px;
  background: url(../icons/cart-delete.svg) center/contain no-repeat;
}

@media screen and (max-width: 1600px) {
  .deliveryItem {
    gap: 20px;
    padding: 20px;
  }
  .deliveryItem__checkbox {
    width: 16px;
    height: 16px;
  }
  .deliveryItem p {
    font-size: 13px;
    line-height: 14px;
  }
  .deliveryItem__delete {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 1400px) {
  .deliveryItem {
    gap: 20px;
    padding: 20px;
  }
  .deliveryItem__checkbox {
    width: 14px;
    height: 14px;
  }
  .deliveryItem p {
    font-size: 12px;
    line-height: 13px;
  }
  .deliveryItem__delete {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 720px) {
  .deliveryItem p {
    font-size: 12px;
    line-height: 15px;
  }
}
@media screen and (max-width: 520px) {
  .deliveryItem {
    gap: 20px;
    padding: 15px 10px;
  }
  .deliveryItem__checkbox {
    width: 17px;
    height: 17px;
  }
  .deliveryItem__delete {
    width: 17px;
    height: 17px;
  }
}
.profileOrganization__header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.profileOrganization__btn {
  padding: 15px 60px;
}
.profileOrganization__form {
  display: none;
  flex-direction: row;
  gap: 7px;
  background: var(--white-color);
  padding: 20px;
  border-radius: var(--radius-l);
  box-shadow: var(--box-shadow);
}
.profileOrganization__form.open {
  display: flex;
}
.profileOrganization__fieldset {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.profileOrganization__save {
  padding: 15px 60px;
  margin: auto 0 auto auto;
  line-height: 20px;
}
.profileOrganization__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.organization {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: var(--white-color);
  padding: 20px;
  border-radius: var(--radius-l);
  box-shadow: var(--box-shadow);
}
.organization__main {
  display: flex;
  flex-direction: column;
}
.organization__main p {
  font-size: 12px;
}
.organization__title {
  margin-bottom: 20px;
  color: var(--blue-color);
}
.organization__links {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding-right: 40px;
}
.organization__link {
  display: flex;
  align-items: center;
  gap: 4px;
}
.organization__link img {
  height: 20px;
  width: 20px;
}
.organization__link a {
  color: var(--blue-color);
}

@media screen and (max-width: 1600px) {
  .profileOrganization__save {
    padding: 10px 30px;
    line-height: 16px;
  }
  .profileOrganization__btn {
    padding: 10px 30px;
  }
  .profileOrganization__list {
    gap: 8px;
  }
  .profileOrganization__form {
    padding: 12px;
  }
  .organization {
    gap: 12px;
    padding: 12px;
  }
  .organization__title {
    font-size: 13px;
    line-height: 15px;
    margin-bottom: 10px;
  }
  .organization__main p {
    font-size: 10px;
    line-height: 12px;
  }
  .organization__link img {
    height: 16px;
    width: 16px;
  }
  .organization__link a {
    font-size: 12px;
    line-height: 13px;
  }
}
@media screen and (max-width: 1000px) {
  .profileOrganization__form {
    flex-direction: column;
  }
  .profileOrganization__btn {
    padding: 10px 20px;
  }
  .profileOrganization__save {
    padding: 10px 20px;
  }
  .organization {
    flex-direction: column;
    gap: 10px;
  }
  .organization__links {
    height: -moz-fit-content;
    height: fit-content;
    gap: 10px;
    padding-right: 0;
  }
}
@media screen and (max-width: 720px) {
  .profileOrganization__form {
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  .profileOrganization__header {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
  .organization__title {
    font-size: 14px;
    line-height: 14px;
  }
}
.delivery {
  width: var(--desktop-width);
  margin: 0 auto 100px auto;
}
.delivery ul {
  padding-left: 22px;
}
.delivery li,
.delivery p,
.delivery i {
  font-size: 16px;
  line-height: 22px;
}
.delivery li b,
.delivery p b,
.delivery i b {
  font-size: 16px;
  line-height: 22px;
}
.delivery b {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}
.delivery__green {
  color: green;
}

@media screen and (max-width: 1400px) {
  .delivery {
    margin: 0 auto 60px auto;
  }
}
@media screen and (max-width: 720px) {
  .delivery ul {
    padding-left: 15px;
  }
  .delivery li,
  .delivery p,
  .delivery i {
    font-size: 12px;
    line-height: 16px;
  }
  .delivery li b,
  .delivery p b,
  .delivery i b {
    font-size: 12px;
    line-height: 16px;
  }
  .delivery b {
    font-size: 18px;
    line-height: 22px;
  }
}
.counter {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 35px;
}
.counter__btn {
  width: 40px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 20px;
  color: var(--vlue-text-color);
  border: 1.5px solid var(--blue-color);
  padding: 0 14px;
  border-radius: 20px 0 0 20px;
}
.counter__btn.right {
  border-radius: 0 20px 20px 0;
}
.counter__input {
  height: 100%;
  width: 60px;
  margin: 0;
  border: none;
  text-align: center;
  border-top: 1.5px solid var(--blue-color);
  border-bottom: 1.5px solid var(--blue-color);
  background: none;
  outline: none;
}
.counter__input:focus {
  outline: none;
}
.counter__input::-webkit-outer-spin-button, .counter__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
}

@media screen and (max-width: 1900px) {
  .counter {
    height: 30px;
  }
  .counter__btn {
    width: 33px;
    font-size: 16px;
    line-height: 16px;
    padding: 0 11px;
  }
  .counter__input {
    width: 50px;
  }
}
@media screen and (max-width: 1600px) {
  .counter {
    height: 25px;
  }
  .counter__btn {
    font-size: 13px;
    line-height: 13px;
  }
  .counter__input {
    width: 45px;
    font-size: 13px;
    line-height: 13px;
  }
}
@media screen and (max-width: 1000px) {
  .counter {
    height: 35px;
  }
  .counter__btn {
    font-size: 15px;
    line-height: 15px;
  }
  .counter__input {
    width: 75px;
    font-size: 15px;
    line-height: 15px;
  }
}
.afterBuy {
  width: var(--desktop-width);
  margin: 0 auto 100px auto;
}
.afterBuy__container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.afterBuy__container .afterBuy__orderTitle {
  margin: 0 !important;
}
.afterBuy__left {
  width: 50%;
  max-width: 50%;
  border-radius: var(--radius-s);
  border: .5px solid var(--caption-text-color);
  background-color: var(--white-color);
  padding: 20px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.afterBuy__right {
  flex: 1;
}
.afterBuy__description {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.afterBuy__text {
  display: block;
  font-size: 16px;
  line-height: 18px;
}
.afterBuy__info {}
.afterBuy__info-block {
  display: flex;
  flex-direction: row;
}
.afterBuy__info-text, .afterBuy__info-title {
  flex: 1;
  font-size: 18px;
  line-height: 20px;
}
.afterBuy__info-block h6 {
  font-weight: 700;
}
.afterBuy__subtitle {
  font-size: 28px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.afterBuy__info-text {
  font-size: 20px;
}
.afterBuy__info-text strong {
  font: inherit;
  font-weight: 700;
}
.afterBuy__orderTitle {
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.afterBuy__order-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.afterBuy__order {
  width: 100%;
  overflow: hidden;
  padding: 10px;
  border-radius: var(--radius-s);
  border: .5px solid var(--caption-text-color);
  background-color: var(--white-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.afterBuy__order img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.afterBuy__order-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.afterBuy__order-title {
  font-size: 22px;
  line-height: 24px;
  font-weight: 800;
}
.afterBuy__order-qunatity {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.afterBuy__order-qunatity p {
  font-size: 16px;
  line-height: 18px;
}
.afterBuy__order-qunatity strong {
  font: inherit;
  font-weight: 800;
}
@media screen and (max-width: 1600px) {
  .afterBuy__container {
    gap: 12px;
  }
  .afterBuy__left {
    padding: 14px;
    gap: 12px;
  }
  .afterBuy__text {
    font-size: 15px;
  }
  .afterBuy__orderTitle {
    font-size: 22px;
    line-height: 24px;
  }
  .afterBuy__info-text, .afterBuy__info-title {
    font-size: 15px;
    line-height: 17px;
  }
  .afterBuy__subtitle {
    font-size: 18px;
    line-height: 21px;
  }
  .afterBuy__order {
    padding: 12px;
    gap: 8px;
  }
}
 @media screen and (max-width: 1200px) {
  .afterBuy__orderTitle {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 14px;
  }
  .afterBuy__info-text, .afterBuy__info-title {
    font-size: 15px;
    line-height: 17px;
  }
}
@media screen and (max-width: 900px) {
  .afterBuy__container {
    flex-direction: column;
  }
  .afterBuy__left {
    width: 100%;
    max-width: 100%;
  }
}
.pagePagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}
.pagePagination__back,
.pagePagination__more {
  color: var(--blue-text-color);
  font-size: 24px;
  line-height: 27px;
  font-family: var(--font-famile-sub);
  font-weight: 500;
  position: relative;
}
.pagePagination__back {
  padding-left: 34px;
}
.pagePagination__more {
  padding-right: 34px;
}
.pagePagination__back::after,
.pagePagination__more::after {
  content: '';
  position: absolute;
  top: 7px;
  width: 14px;
  height: 12px;
  background: url(../icons/arrow-for-pagination.svg) center/contain no-repeat;
}
.pagePagination__back::after {
  left: 0;
}
.pagePagination__more::after {
  right: 0;
  transform: rotate(180deg);
}
.pagePagination__btn {
  font-size: 24px;
  line-height: 27px;
  font-family: var(--font-famile-sub);
  font-weight: 500;
}
.pagePagination__btn.active {
  width: 45px;
  aspect-ratio: 1;
  border-radius: 50%;
  text-align: center;
  background-color: var(--blue-color);
  color: var(--white-text-color);
  margin: 0 -5px;
}
@media screen and (max-width: 1600px) {
  .pagePagination {
    gap: 35px;
    margin-top: 30px;
  }
  .pagePagination__back,
  .pagePagination__more,
  .pagePagination__btn {
    font-size: 20px;
    line-height: 21px;
  }
  .pagePagination__btn.active {
    width: 40px;
  }
  .pagePagination__back::after,
  .pagePagination__more::after {
    top: 4px;
  }
}
@media screen and (max-width: 1400px) {
  .pagePagination {
    gap: 28px;
    margin-top: 25px;
  }
  .pagePagination__back,
  .pagePagination__more,
  .pagePagination__btn {
    font-size: 17px;
    line-height: 18px;
  }
  .pagePagination__back {
    padding-left: 27px;
  }
  .pagePagination__more {
    padding-right: 27px;
  }
  .pagePagination__btn.active {
    width: 38px;
  }
  .pagePagination__back::after,
  .pagePagination__more::after {
    top: 2px;
  }
}
@media screen and (max-width: 1200px) {
  .pagePagination {
    gap: 20px;
    margin-top: 20px;
  }
  .pagePagination__back,
  .pagePagination__more,
  .pagePagination__btn {
    font-size: 14px;
    line-height: 14px;
  }
  .pagePagination__back {
    padding-left: 22px;
  }
  .pagePagination__more {
    padding-right: 22px;
  }
  .pagePagination__btn.active {
    width: 30px;
  }
  .pagePagination__back::after,
  .pagePagination__more::after {
    top: 3px;
    width: 10px;
    height: 9px;
  }
}
@media screen and (max-width: 1000px) {
  .pagePagination {
    gap: 16px;
  }
  .pagePagination__back,
  .pagePagination__more,
  .pagePagination__btn {
    font-size: 12px;
    line-height: 14px;
  }
  .pagePagination__back::after,
  .pagePagination__more::after {
    top: 0;
    width: 14px;
    height: 12px;
  }
}
.projectPage {
  width: var(--desktop-width);
  margin: 0 auto 100px auto;
  display: flex;
  flex-direction: row;
  gap: 50px;
}
.projectPage__imgs {
  flex: 2;
  max-width: 35%;
  display: flex;
  flex-direction: column;
}
.projectPage__mainImg {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background-color: var(--white-color);
  border-radius: var(--radius-s);
  box-shadow: var(--box-shadow);
  padding: 20px;
}
.projectPage__slider {
  width: calc(100% + 40px);
  overflow: hidden;
  padding: 20px 0;
  margin: 0 -20px;
  position: relative;
}
.projectPage__slider::before, .projectPage__slider::after {
  content: '';
  width: 20px;
  height: 100%;
  position: absolute;
  z-index: 100;
  top: 0;
  background: linear-gradient(to right, var(--bg-color) 50%, transparent 100%);
}
.projectPage__slider::before {
  left: 0;
}
.projectPage__slider::after {
  right: 0;
  transform: rotate(180deg);
}
.projectPage__subImg {
  width: 100px;
  aspect-ratio: 1;
  background-color: var(--white-color);
  border-radius: var(--radius-s);
  padding: 10px;
  box-shadow: var(--box-shadow);
}
.projectPage__subImg:first-child {
  margin-left: 20px;
}
.projectPage__subImg:last-child {
  margin-right: 20px;
}
.projectPage__main {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.projectPage__main .title {
  margin: 0;
}
.projectPage__description {
  font-size: 15px;
  line-height: 16px;
}
@media screen and (max-width: 1900px) {
  .projectPage {
    gap: 40px;
  }
  .projectPage__main {
    gap: 16px;
  }
  .projectPage__description {
    font-size: 13px;
    line-height: 14px;
  }
  .projectPage__subImg {
    width: 80px;
  }
}
@media screen and (max-width: 1600px) {
  .projectPage {
    gap: 30px;
    margin-bottom: 80px;
  }
  .projectPage__main {
    gap: 10px;
  }
  .projectPage__description {
    font-size: 12px;
    line-height: 13px;
  }
}
@media screen and (max-width: 1200px) {
  .projectPage {
    flex-direction: column;
    margin-bottom: 60px;
  }
  .projectPage__imgs {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 720px) {
  .modal__footer {
    gap: 0px;
    flex-direction: column;
  }

  .modal__subtext {
    max-width: 100%;
  }
}

