@charset "UTF-8";
/* Reset and base styles  */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
  scroll-padding: 100px;
}
@media screen and (max-width: 1024px) {
  html {
    overflow-x: hidden;
  }
}

body {
  font-family: "Inter";
  background-color: #f7f7f7;
  color: #000000;
}
@media screen and (max-width: 1024px) {
  body {
    height: 100%;
    overflow-x: hidden;
  }
}

body.active {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.placeholder-img {
  background: #e0e0e0;
  width: 100%;
  min-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.header {
  background: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 123;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}
@media screen and (max-width: 1024px) {
  .header .container {
    align-items: start;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 11.2px;
}
.header__logo-icon {
  height: 11.2px;
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .header__contacts {
    display: none;
  }
}
.header__contact {
  font-family: "Inter";
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.02em;
  color: #000000;
  text-decoration: none;
  transition: opacity 0.2s;
}
.header__contact:hover {
  opacity: 0.7;
}
@media screen and (max-width: 480px) {
  .header__contact {
    font-size: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .header .container {
    flex-direction: column;
    height: auto;
    padding: 12px 20px;
    gap: 12px;
  }
}

@media screen and (max-width: 1024px) {
  .header__contacts.header__contacts-mobile {
    display: flex;
  }
}

.sidebar {
  background: #f7f7f7;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  height: 100%;
  margin-bottom: 85px;
  max-width: 187px;
  padding-bottom: 141px;
  position: fixed;
}
@media screen and (max-width: 1440px) {
  .sidebar {
    max-width: 180px;
  }
}
@media screen and (max-width: 1024px) {
  .sidebar {
    position: static;
    max-width: 100%;
    height: auto;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 1024px) {
  .sidebar {
    margin-bottom: 0;
    max-width: auto;
    padding-bottom: 0;
    border-radius: 0px;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    background-color: #ffffff;
    border-top: 1px solid #e6e6e6;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }
}
.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 1024px) {
  .sidebar__nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 8px 28.5px;
    margin: 0 auto;
  }
}
.sidebar__nav-item {
  width: 100%;
  padding: 12px 16px;
  background: #f7f7f7;
  border-radius: 12px;
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: #000000;
  cursor: pointer;
  transition: all 0.2s ease-out;
  font-family: "Inter";
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1024px) {
  .sidebar__nav-item {
    font-size: 11px;
  }
}
.sidebar__nav-item {
  color: inherit;
  transition: color 0.2s;
}
@media screen and (max-width: 1024px) {
  .sidebar__nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    text-decoration: none;
    background: none;
    border: none;
    transition: opacity 0.2s;
  }
  .sidebar__nav-item:hover {
    opacity: 0.7;
  }
  .sidebar__nav-item {
    color: #e6e6e6;
  }
}
.sidebar__nav-item input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.sidebar__nav-item:hover {
  background-color: #e6e6e6 !important;
}
@media screen and (max-width: 1024px) {
  .sidebar__nav-item:hover {
    background-color: #ffffff !important;
  }
}
.sidebar__nav-item:has(input:checked) {
  background-color: #e6e6e6;
}
@media screen and (max-width: 1024px) {
  .sidebar__nav-item:has(input:checked) {
    background-color: #ffffff !important;
    color: #000000;
  }
}
.sidebar__nav-item:active {
  background-color: #ffffff;
  box-shadow: 0 0 0 1px #e6e6e6;
}
.sidebar__nav-item-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sidebar__nav-item-mobile {
    display: flex;
  }
}
.sidebar__brand {
  font-family: "Inter";
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #666666;
}
.sidebar__brand img {
  width: 67px;
  height: 12px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  display: inline-block;
  margin-top: 1.4px;
}
@media screen and (max-width: 1024px) {
  .sidebar__brand img {
    margin-top: 1px;
    margin-left: 5px;
  }
}
.sidebar__footer {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: auto;
}
@media screen and (max-width: 1024px) {
  .sidebar__footer {
    display: none;
  }
}
.sidebar__legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar__policy {
  font-family: "Inter";
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #666666;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.2s ease-out;
}
.sidebar__policy::after {
  content: "";
  display: block;
  margin-top: 1px;
  width: 0%;
  transform: translateX(50%);
  height: 1px;
  background-color: #ff5500;
  opacity: 0;
  transition: all 0.2s ease-out;
}
.sidebar__policy:hover {
  color: #ff5500;
}
.sidebar__policy:hover::after {
  content: "";
  display: block;
  width: 100%;
  transform: translateX(0%);
  height: 1px;
  background-color: #ff5500;
  opacity: 1;
}
.sidebar__copyright {
  font-family: "Inter";
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #666666;
}

.bottom-nav__icon-svg {
  transition: all 0.2s ease-out;
  fill: #e6e6e6;
}

.sidebar__nav-item:has(input:checked) .bottom-nav__icon-svg {
  fill: #000000;
}

.case {
  background: #f7f7f7;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-out;
  min-height: 622px;
}
@media screen and (max-width: 1024px) {
  .case {
    min-height: auto;
  }
}
.case:hover {
  box-shadow: 0 0 0 1px #e6e6e6;
}
.case__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.case__text-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.case__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .case__wrapper {
    gap: 8px;
  }
}
.case__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case__name {
  font-family: "Inter";
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000;
}
.case__date {
  font-family: "Inter";
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #999999;
}
.case__link {
  font-family: "Inter";
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: #000000;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-out;
}
.case__link:hover {
  color: #ff5500;
}
@media screen and (max-width: 1024px) {
  .case__link {
    display: none;
  }
}
.case__link-mobile {
  font-family: "Inter";
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: #000000;
  text-decoration: none;
  display: none;
  transition: all 0.2s ease-out;
}
.case__link-mobile:hover {
  color: #ff5500;
}
@media screen and (max-width: 1024px) {
  .case__link-mobile {
    display: inline-block;
  }
}
.case__tags {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
@media screen and (max-width: 1024px) {
  .case__tags {
    display: none;
  }
}
.case__tags-mobile {
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1024px) {
  .case__tags-mobile {
    display: flex;
  }
}
.case__tag {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  height: 20px;
  font-family: "Inter";
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #000000;
  transition: all 0.2s ease-out;
}
.case__tag:hover {
  color: #ff5500;
}
.case__description {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #000000;
}
.case__image {
  width: 100%;
  height: 100%;
  display: block;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  background: #e0e0e0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .case__image {
    border-radius: 16px;
  }
}
.case__image-wrapper {
  display: block;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .case__image-wrapper {
    display: none;
  }
}
.case__image-wrapper-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .case__image-wrapper-mobile {
    display: block;
    width: calc(100% + 32px);
    transform: translateX(-16px);
  }
}
@media screen and (max-width: 1024px) {
  .case__content {
    padding: 16px;
  }
  .case__name {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .case__tag {
    font-size: 13px;
  }
  .case__description {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.case__btn-mobile {
  display: none;
  color: #999999;
  justify-content: end;
  transition: all 0.2s ease-out;
}
.case__btn-mobile:hover {
  color: #000000;
}
.case__btn-mobile:active {
  color: #000000;
}
@media screen and (max-width: 1024px) {
  .case__btn-mobile {
    display: flex;
  }
}

.tags-panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 16px 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-self: start;
  position: sticky;
  top: 64px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .tags-panel {
    position: static;
    width: 100%;
    align-items: start;
    z-index: 999;
    height: 100%;
  }
}
.tags-panel__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (max-width: 1024px) {
  .tags-panel__list {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .tags-panel__list {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .tags-panel {
    display: none;
  }
}

.tags-panel.tags-panel-mobile {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .tags-panel.tags-panel-mobile {
    align-items: start;
  }
}

.tags-panel__tag {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  height: 30px;
  background: transparent;
  border-radius: 12px;
  font-family: "Inter";
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #000000;
  white-space: nowrap;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 1024px) {
  .tags-panel__tag {
    font-size: 13px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.tags-panel__tag input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.tags-panel__tag:has(input:checked) {
  background-color: #e6e6e6;
}
.tags-panel__tag:hover {
  background-color: #f7f7f7;
}

.service-tag {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 10px;
  height: 30px;
  background: #ffffff;
  border-radius: 12px;
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: #000000;
  white-space: nowrap;
  transition: all 0.2s ease-out;
  width: -moz-fit-content;
  width: fit-content;
  gap: 8px;
}
.service-tag input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.service-tag:has(input:checked) {
  box-shadow: 0 0 0 1px #999999;
}
.service-tag:hover {
  background-color: #e6e6e6;
}
.service-tag::after {
  content: "";
  display: block;
  position: absolute;
  width: 0px;
  height: 8px;
  background-color: #ff5500;
  border-radius: 50%;
}
.service-tag:has(input:checked)::after {
  position: static;
  width: 8px;
  height: 8px;
}

.service-tags-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tags-panel-mobile {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 16px 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-self: start;
  align-items: center;
}
.tags-panel-mobile__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tags-panel-page {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
  background-color: #ffffff;
  z-index: 5;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 16px;
  position: sticky;
  top: 64px;
}
@media screen and (max-width: 1024px) {
  .tags-panel-page {
    border-radius: 0px;
    position: fixed;
    width: 100%;
    top: 35px;
    right: -1000px;
    transition: all 0.2s ease-out;
    overflow-x: hidden;
    height: calc(100vh - 77px);
  }
}

body.active .tags-panel-page {
  right: 0;
}

.sidebar__mobile-footer {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  display: inline-flex;
  margin-bottom: 48px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #000000;
  border-radius: 12px;
  padding: 0 24px;
  height: 48px;
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease-out;
  border: none;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.button:hover {
  box-shadow: 0 0 0 8px #e6e6e6;
}
.button:active {
  box-shadow: 0 0 0 8px #f7f7f7;
}
@media screen and (max-width: 1024px) {
  .button {
    height: 44px;
    transform: translateX(10px);
  }
}
@media screen and (max-width: 500px) {
  .button {
    width: calc(100% - 20px);
  }
}

.discuss-title {
  font-family: "Inter";
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #999999;
}
@media screen and (max-width: 1024px) {
  .discuss-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  .discuss-title {
    font-size: 24px;
  }
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .input-group {
    gap: 8px;
  }
}

.input-field {
  width: 100%;
  height: 53px;
  background-color: #ffffff;
  border-radius: 12px;
  border: none;
  padding: 0 16px;
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #000000;
  outline: none;
  transition: all 0.2s ease-out;
  box-shadow: 0 0 0 1px transparent;
}
.input-field::-moz-placeholder {
  color: #999999;
}
.input-field::placeholder {
  color: #999999;
}
.input-field:focus {
  box-shadow: 0 0 0 1px #999999;
}
.input-field:hover {
  box-shadow: 0 0 0 1px #999999;
}

.required-note {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #999999;
}

.required-star {
  font-size: 18px;
  line-height: 1;
}

.inputs-selection {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .inputs-selection {
    gap: 16px;
  }
}

.service-selection {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .service-selection {
    gap: 16px;
  }
}

.service-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
}
@media screen and (max-width: 1024px) {
  .service-title {
    font-size: 22px;
  }
}

.submit-btn-wrap {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .submit-btn-wrap {
    justify-content: stretch;
  }
}

.submit-btn {
  background-color: #000000;
  border: none;
  border-radius: 16px;
  padding: 0 24px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.submit-btn:hover {
  box-shadow: 0 0 0 8px #e6e6e6;
}
.submit-btn:active {
  box-shadow: 0 0 0 8px #f7f7f7;
}
@media screen and (max-width: 480px) {
  .submit-btn {
    width: 100%;
  }
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.discuss-block {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 1024px) {
  .gallery {
    width: calc(100% + 32px);
    transform: translateX(-16px);
    display: none;
  }
}

.gallery.gallery-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .gallery.gallery-mobile {
    display: flex;
  }
}

.gallery-main img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(234.25, 234.25, 234.25);
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .gallery-thumbs {
    display: none;
  }
}
.gallery-thumbs img {
  flex: 1 1 0;
  min-width: 80px;
  border-radius: 8px;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .gallery-thumbs img {
    min-width: 70px;
  }
}

.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  background-color: #ffffff;
  border-top: 1px solid #e6e6e6;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .bottom-nav {
    display: flex;
  }
}

.bottom-nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 28.5px;
  margin: 0 auto;
}

.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  text-decoration: none;
  background: none;
  border: none;
  transition: opacity 0.2s;
}
.bottom-nav__item:hover {
  opacity: 0.7;
}

.bottom-nav__icon {
  width: 24px;
  height: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom-nav__icon--menu .bottom-nav__icon-shape {
  width: 16px;
  height: 14px;
  margin-top: 2px;
}
.bottom-nav__icon {
  display: none;
}
@media screen and (max-width: 1024px) {
  .bottom-nav__icon {
    display: flex;
  }
}

.bottom-nav__label {
  font-family: "Inter";
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1024px) {
  .bottom-nav__label {
    font-size: 11px;
  }
}
.bottom-nav__label {
  color: inherit;
  transition: color 0.2s;
}

.bottom-nav__item {
  color: #e6e6e6;
}

.bottom-nav__item--active {
  color: #000000;
}

.bottom-nav__icon-svg {
  transition: all 0.2s ease-out;
  fill: #e6e6e6;
}

body.active .sidebar__nav-item-mobile .bottom-nav__icon-svg {
  fill: #000000;
}

body.active .sidebar__nav-item-mobile {
  color: #000000;
}

/* Базовые стили для слайдера */
.embla {
  overflow: hidden; /* Скрываем всё за пределами слайдера */
}

.embla__viewport {
  overflow: hidden; /* Скрываем слайды, которые не в области видимости */
  position: absolute;
  left: 0;
}

.embla__container {
  display: flex; /* Размещаем слайды в ряд */
  touch-action: pan-y pinch-zoom; /* Улучшаем обработку касаний */
  gap: 4px;
}

.embla__slide {
  /* Размер слайда. Важно: '0 0' запрещает сжатие и растяжение, 
   а 'var(--slide-size)' задаёт базовую ширину */
  flex: 0 0 var(--slide-size);
  min-width: 0; /* Помогает избежать переполнения текстом */
}

.embla__slide:nth-child(1) {
  padding-left: 16px;
}

.embla__slide:last-child {
  padding-right: 16px;
}

/* По умолчанию каждый слайд занимает 100% ширины */
.embla {
  --slide-size: auto;
  height: 20px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .embla {
    display: block;
  }
}

.embla2 {
  overflow: hidden;
}

.embla__viewport2 {
  overflow: hidden;
  width: 100%;
  position: absolute;
  left: 0;
}

.embla__container2 {
  display: flex;
  touch-action: pan-y pinch-zoom;
  gap: 4px;
}

.embla__slide2 {
  flex: 0 0 var(--slide-size);
  min-width: 0;
}

.embla__slide2:nth-child(1) {
  padding-left: 20px;
}

.embla__slide2:last-child {
  padding-right: 16px;
}

.embla2 {
  --slide-size: auto;
  height: 20px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .embla2 {
    display: block;
  }
}

.embla3 {
  overflow: hidden;
}

.embla__viewport3 {
  overflow: hidden;
  width: 100%;
  position: absolute;
  left: 0;
}

.embla__container3 {
  display: flex;
  touch-action: pan-y pinch-zoom;
  gap: 4px;
}

.embla__slide3 {
  flex: 0 0 var(--slide-size);
  min-width: 0;
}

.embla__slide3:nth-child(1) {
  padding-left: 20px;
}

.embla__slide3:last-child {
  padding-right: 16px;
}

.embla3 {
  --slide-size: auto;
  height: 20px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .embla3 {
    display: block;
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0px;
  }
}

.layout {
  padding: 24px 0 80px 0;
  position: relative;
}
.layout .container {
  display: grid;
  grid-template-columns: 187px 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .layout .container {
    grid-template-columns: 180px 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .layout .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .layout .container {
    gap: 0;
  }
}
@media screen and (max-width: 1024px) {
  .layout {
    padding: 8px 0 88px 0;
  }
}

.content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 283px;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .content {
    grid-template-columns: 1fr;
  }
}

.cases {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .cases {
    padding: 4px;
    gap: 8px;
  }
}
.cases__title {
  font-family: "Inter";
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #000000;
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1440px) {
  .cases__title {
    font-size: 48px;
    padding-left: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .cases__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .cases__title {
    font-size: 32px;
    padding-left: 16px;
    padding-top: 16px;
    margin-bottom: 0px;
  }
}

.mobile__date-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}

.case-content {
  flex: 1;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.back-link {
  height: 60px;
  display: flex;
  align-items: center;
  padding-left: 16px;
}
@media screen and (max-width: 1024px) {
  .back-link {
    height: 30px;
    margin-top: 12px;
  }
}

.back-link__text {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #999999;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease-out;
}
.back-link__text:hover {
  color: #000000;
}
@media screen and (max-width: 1024px) {
  .back-link__text {
    font-size: 13px;
  }
}

.back-link__text-arrow {
  fill: #999999;
  transition: all 0.2s ease-out;
}

.back-link__text:hover > .back-link__text-arrow {
  fill: #000000;
}

.case-detail-card {
  background-color: #f7f7f7;
  border-radius: 16px;
  padding: 16px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  .case-detail-card {
    padding: 16px;
    gap: 24px;
  }
}

.case-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-header-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .case-header-wrapper {
    gap: 16px;
  }
}

.case-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-title {
  font-family: "Inter";
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1024px) {
  .case-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .case-title {
    font-size: 24px;
  }
}

.case-date {
  font-family: "Inter";
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #999999;
}

.case-site {
  font-family: "Inter";
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: #000000;
  text-decoration: none;
}

.case-description-lead {
  font-family: "Inter";
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1024px) {
  .case-description-lead {
    font-family: "Inter";
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
  }
}

.case-full-text {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
}

.case-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 1024px) {
  .case-meta {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */