@charset "UTF-8";
@import url("../common/common.css");

/* Section page-heading */
.page-heading {
  --breadcrumbsColor: var(--color-gray-500);
  --breadcrumbsGap: clamp(3rem, 2.9418604651rem + 0.2325581395vw, 3.125rem);
  padding-block: 1.5rem 0.625rem;
  color: var(--breadcrumbsColor);
}
.page-heading__breadcrumbs {
  margin-bottom: 1.125rem;
}
.page-heading__breadcrumbs-list {
  display: flex;
  align-items: center;
  column-gap: var(--breadcrumbsGap);
}
.page-heading__breadcrumbs-item {
  position: relative;
}
.page-heading__breadcrumbs-item:not(:last-child)::after {
  position: absolute;
  content: "−";
  right: calc(var(--breadcrumbsGap) / 2 * -1 - 0.3125rem);
  top: 10%;
}
.page-heading__breadcrumbs-item:last-child a {
  opacity: 0.7;
  pointer-events: none;
}
.page-heading__breadcrumbs-link {
  font-size: clamp(0.9375rem, 0.8502906977rem + 0.3488372093vw, 1.125rem);
  color: currentColor;
  line-height: 1.5;
}
.page-heading__page-name {
  color: var(--color-dark);
}
.page-heading__page-name--small-mobile {
  font-size: clamp(1.25rem, 0.9011627907rem + 1.3953488372vw, 2rem);
  line-height: 1.5;
}

@media (width <= 63.99875rem) {
  .page-heading {
    padding-block: 1.25rem 0.5rem;
  }
  .page-heading__breadcrumbs {
    margin-bottom: 0.625rem;
  }
  .page-heading__breadcrumbs-item:not(:last-child)::after {
    top: 5%;
  }
  .page-heading__breadcrumbs-link {
    line-height: 1.4;
    letter-spacing: 0.03em;
  }
}
@media (width <= 47.99875rem) {
  .page-heading__breadcrumbs-list {
    flex-wrap: wrap;
    column-gap: var(--breadcrumbsGap);
    row-gap: 0.9375rem;
  }
}
/*  ===================================  */
/*  ==========END page-heading=========  */
/*  ===================================  */
/* Search block. ( form + input + button) .part of block locations */
.search {
  --searchBlockHeight: 2.375rem;
  --searchBlockHeightHigh: 3.125rem;
  --searchBgColor: var(--color-light);
  --searchBgColorHover: var(--color-gray-100);
  --searchBorder: var(--border-light);
  --searchIconColor: var(--color-border-medium);
  position: relative;
  display: block;
  height: 100%;
}
.search__input {
  min-height: var(--searchBlockHeight);
  height: 100%;
  width: 100%;
  padding-inline: 0.625rem calc(var(--searchBlockHeight) + 1.25rem);
  padding-block: 0.1875rem;
  border: none;
  outline: var(--searchBorder);
  border-radius: var(--border-radius-small);
  background-color: var(--searchBgColor);
  transition-duration: var(--transition-duration) !important;
}
.search__input--high {
  min-height: var(--searchBlockHeightHigh);
}
.search__input:focus {
  background-color: var(--searchBgColor) !important;
  outline: var(--border);
}
@media (any-hover: hover) {
  .search__input:hover {
    background-color: var(--searchBgColorHover);
  }
}
@media (any-hover: hover) and (any-hover: none) {
  .search__input:active {
    background-color: var(--searchBgColorHover);
  }
}
.search__button {
  padding: 0;
  background-color: transparent;
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute !important;
  top: 0;
  right: 0;
  border-radius: var(--border-radius-small);
  min-height: var(--searchBlockHeight);
  width: var(--searchBlockHeight);
}
.search__button--high {
  min-height: var(--searchBlockHeightHigh);
}
@media (any-hover: hover) {
  .search__button:hover {
    filter: opacity(0.6);
  }
}
@media (any-hover: hover) and (any-hover: none) {
  .search__button:active {
    filter: opacity(0.6);
  }
}
.search__button:active {
  filter: opacity(0.3);
}
.search__icon {
  fill: transparent;
  stroke: var(--searchIconColor);
}

@media (width <= 47.99875rem) {
  .search {
    --searchBlockHeightHigh: 2.625rem;
  }
}
/* Styles for location-card . Source - block locations */
.location-card {
  --locationCardBg: var(--color-light);
  --locationCardBgActive: var(--color-accent-200);
  --locationCardHeight: 12.75rem;
  display: flex;
  min-height: var(--locationCardHeight);
  transition-duration: var(--transition-duration);
  outline: var(--border-light);
  border-radius: var(--border-radius-small);
  background-color: var(--locationCardBg);
}
.location-card.is-active {
  background-color: var(--locationCardBgActive);
}
@media (any-hover: hover) {
  .location-card:hover {
    background-color: var(--locationCardBgActive);
  }
}
@media (any-hover: hover) and (any-hover: none) {
  .location-card:active {
    background-color: var(--locationCardBgActive);
  }
}
.location-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
}
.location-card__image-wrapper {
  width: 8.75rem;
  min-height: 100%;
  flex-shrink: 0;
}
.location-card__body {
  display: flex;
  flex-direction: column;
  row-gap: 0.25rem;
  justify-content: end;
  padding: 1.25rem;
  color: var(--text-color-dark-secondary);
}
.location-card__address {
  flex-grow: 1;
}
.location-card__address-button {
  padding: 0;
  background-color: transparent;
  border: none;
  color: var(--text-color-dark);
  cursor: pointer;
  letter-spacing: var(--letter-spacing);
  line-height: 1.3;
  transition-duration: var(--transition-duration) !important;
}
@media (any-hover: hover) {
  .location-card__address-button:hover {
    filter: opacity(0.6);
  }
}
@media (any-hover: hover) and (any-hover: none) {
  .location-card__address-button:active {
    filter: opacity(0.6);
  }
}
.location-card__address-button:active {
  filter: opacity(0.3);
  will-change: transform;
}
.location-card__text-block {
  font-size: 1rem;
  line-height: 1.4;
  word-spacing: 0.1em;
}
.location-card__text-block p:not(:last-child) {
  margin-bottom: 0;
}
.location-card__register-time--today {
  color: var(--color-green-light);
}
.location-card__buttons {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

@media (width <= 47.99875rem) {
  .location-card {
    --locationCardHeight: 9.875rem;
    row-gap: 0.625rem;
  }
  .location-card__image-wrapper {
    width: 6.25rem;
  }
  .location-card__body {
    padding: 0.625rem;
  }
  .location-card__address {
    letter-spacing: -0.02em;
  }
  .location-card__text-block {
    font-size: 0.9375rem;
    word-spacing: 0.2em;
  }
}
/* Styles for the map. part of block locations .Current, will need to be added...*/
.map-block {
  position: relative;
}
.map-block__iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-block__marker {
  position: absolute;
  top: 50%;
  left: 30%;
  width: clamp(1.125rem, 0.3691860465rem + 3.023255814vw, 2.75rem);
  height: clamp(1.5rem, 0.511627907rem + 3.9534883721vw, 3.625rem);
}
.map-block__marker--active {
  left: 40%;
}

/* Section locations-short. Small version block locations. */
.locations {
  --locationScrollThumbColor: var(--color-gray-400);
  --locationScrollThumbColorHover: var(--color-gray-500);
  --locationScrollBgColor: var(--color-gray-90);
  --locationListHeight: 45rem;
}
.locations__body {
  height: var(--locationListHeight);
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-block: 0 clamp(0.625rem, 0.0436046512rem + 2.3255813953vw, 1.875rem);
}
.locations__list {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 0.25rem;
  max-width: 31.6875rem;
  width: 100%;
  height: inherit;
  padding-inline: 0.0625rem 0.25rem;
  padding-block: 0.0625rem 0;
  overflow-y: auto;
  overflow-x: hidden;
}
.locations__list::-webkit-scrollbar {
  width: 0.275rem;
  height: 0.275rem;
}
.locations__list::-webkit-scrollbar-track {
  background: var(--locationScrollBgColor);
}
.locations__list::-webkit-scrollbar-thumb {
  background: var(--locationScrollThumbColor);
}
.locations__list::-webkit-scrollbar-thumb:hover {
  background: var(--locationScrollThumbColorHover);
}
.locations__list::-webkit-scrollbar-button {
  display: none;
}
.locations__list-item--search {
  position: sticky;
  top: 0;
  animation-name: scrolling-sticky;
  animation-fill-mode: both;
  animation-timeline: scroll();
  animation-range: 1.25rem 2.5rem;
}
.locations__map-block {
  max-width: 46.0625rem;
  width: 100%;
}

@media (width <= 81.31125rem) {
  .locations {
    --locationListHeight: 55.875rem;
  }
  .locations__body {
    flex-direction: column-reverse;
    height: auto;
    gap: 1.25rem;
  }
  .locations__list {
    height: var(--locationListHeight);
    max-width: unset;
    row-gap: 0.625rem;
  }
  .locations__map-block {
    height: 19.5rem;
    max-width: unset;
    border-radius: var(--border-radius-small);
    overflow: hidden;
  }
}
@media (width <= 47.99875rem) {
  .locations {
    --locationListHeight: 41.875rem;
  }
}
@media (width <= 30.06125rem) {
  .locations__list {
    padding-inline: 0.0625rem 0.125rem;
  }
}
/*  ===================================  */
/*  ====END section-short locations====  */
/*  ===================================  */
/* Styles for address-section svc-contacts.part of conponent address-info. */
.svc-contacts {
  display: flex;
  flex-direction: column;
  row-gap: 1.1875rem;
}
.svc-contacts address {
  font-style: normal;
}
.svc-contacts__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.9375rem;
}
.svc-contacts__item {
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
  flex-shrink: 0;
  width: 100%;
  min-height: 3rem;
}
.svc-contacts__item-icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--color-light);
  flex-shrink: 0;
}
.svc-contacts__item-label {
  max-width: 6.3125rem;
  width: 100%;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.17;
  color: var(--text-color-dark-secondary);
}
.svc-contacts__item-text {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  transition-duration: var(--transition-duration) !important;
}
.svc-contacts__item-text--phone-number {
  white-space: nowrap;
}
.svc-contacts__item-text--underline {
  cursor: pointer;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
@media (any-hover: hover) {
  .svc-contacts__item-text--underline:hover {
    filter: opacity(0.6);
  }
}
@media (any-hover: hover) and (any-hover: none) {
  .svc-contacts__item-text--underline:active {
    filter: opacity(0.6);
  }
}
.svc-contacts__item-text--underline:active {
  filter: opacity(0.4);
  will-change: transform;
  scale: 0.98;
}

@media (width <= 47.99875rem) {
  .svc-contacts {
    row-gap: 0;
  }
}
/* Style for accent red link from common blocks */
.accent-color-link {
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.7;
  letter-spacing: var(--letter-spacing);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--color-accent-600);
}

/*  ===================================  */
/*  ===================================  */
/* Styles for common block service */
.service__name {
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
  line-height: 1.2;
  min-height: 4.75rem;
  padding-inline: 0.625rem;
}
.service__name--large-gap {
  column-gap: 1rem;
}
.service__name-icon {
  width: 3.75rem;
  height: 3.75rem;
}
.service__link {
  font-weight: 700;
  line-height: 1.4;
}
.service__link--name {
  font-size: 1.5rem;
  line-height: 1.2;
}
.service__link--name-small {
  font-size: 1.25rem;
}
.service__link--arrow {
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.25rem;
  text-transform: uppercase;
  width: 100%;
}
.service__link--arrow span {
  width: 95%;
}
.service__link--arrow::after {
  content: "➜";
  width: 1.125rem;
  height: 1.125rem;
  color: currentColor;
  font-size: inherit;
}
.service__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.service__list--services-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.5rem;
  row-gap: 0.625rem;
}
.service__list-item {
  display: inline-flex;
  width: 100%;
  min-height: 3.125rem;
  padding-inline: 0.625rem 0.25rem;
}

@media (width <= 81.31125rem) {
  .service__list--services-page {
    display: flex;
    flex-direction: column;
  }
}
/*  ===================================  */
/*  ===================================  */
/* Styles for nav-section svc-catalog.part of conponent address-info. */
.svc-catalog {
  display: flex;
  flex-direction: column;
  row-gap: 1.125rem;
}
.svc-catalog__list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1875rem;
  margin-bottom: 0.625rem;
}
.svc-catalog__list-title {
  grid-column: 1/3;
}

@media (width <= 81.31125rem) {
  .svc-catalog__list {
    grid-template-columns: auto;
    gap: 0;
    margin-block: 0;
  }
}
@media (width <= 47.99875rem) {
  .svc-catalog {
    row-gap: 0;
  }
  .svc-catalog__title {
    margin-bottom: 1.1875rem;
  }
  .svc-catalog__list {
    gap: 0.9375rem;
    padding-inline: 0 1.875rem;
  }
}
/* Styles for block address-info-gallery. Slider with images. */
.address-info-gallery {
  --addressInfoGalleryControlsColor: var(--color-gray-500);
  --addressInfoGalleryControlsBgColor: var(--color-gray-200);
  padding-inline: 5.125rem;
}
.address-info-gallery__slider {
  overflow: hidden;
  max-width: 68.5rem;
}
.address-info-gallery__image {
  width: inherit;
  height: inherit;
}
.address-info-gallery__image-wrapper {
  width: 12.5rem;
  height: 8.125rem;
}
.address-info-gallery__prev-slide,
.address-info-gallery__next-slide {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 0.125rem;
  transition-duration: var(--transition-duration) !important;
  color: var(--addressInfoGalleryControlsColor);
  background-color: var(--addressInfoGalleryControlsBgColor);
}
.address-info-gallery__prev-slide.swiper-button-disabled,
.address-info-gallery__next-slide.swiper-button-disabled {
  filter: opacity(0.5);
  pointer-events: none;
}
@media (any-hover: hover) {
  .address-info-gallery__prev-slide:hover,
  .address-info-gallery__next-slide:hover {
    filter: brightness(90%);
  }
}
@media (any-hover: hover) and (any-hover: none) {
  .address-info-gallery__prev-slide:active,
  .address-info-gallery__next-slide:active {
    filter: brightness(90%);
  }
}
.address-info-gallery__prev-slide:active,
.address-info-gallery__next-slide:active {
  scale: 0.9;
  filter: brightness(90%);
}
.address-info-gallery__prev-slide::before,
.address-info-gallery__next-slide::before {
  width: 0.625rem;
  height: 0.625rem;
  position: absolute;
  content: "";
  border-left: 0.125rem solid currentColor;
  border-bottom: 0.125rem solid currentColor;
}
.address-info-gallery__prev-slide::after,
.address-info-gallery__next-slide::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 2.75rem;
  height: 2.75rem;
  content: "";
}
.address-info-gallery__prev-slide {
  right: 95%;
}
.address-info-gallery__prev-slide::before {
  rotate: 45deg;
  translate: 25% 0;
}
.address-info-gallery__next-slide {
  left: 95%;
}
.address-info-gallery__next-slide::before {
  rotate: 225deg;
  translate: -25% 0;
}

@media (width <= 47.99875rem) {
  .address-info-gallery {
    padding-inline: 0;
  }
}
/* Styles for conponent address-info. Descriprion of current service card. */
.address-info {
  --addressInfoBlockNameColor: var(--color-gray-850);
}
.address-info__map-block {
  max-width: 78.75rem;
  width: 100%;
  height: 15.625rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-block: 0 clamp(2.75rem, 1.9941860465rem + 3.023255814vw, 4.375rem);
}
.address-info__body {
  display: grid;
  grid-template-columns: minmax(31.9375rem, auto) 1fr;
  grid-template-areas: "contacts services" "contacts buttons" "qs buttons";
  column-gap: 1.5rem;
  margin-bottom: 3.75rem;
}
.address-info__block-name {
  display: flex;
  align-items: center;
  column-gap: 1.25rem;
  font-size: 1.25rem;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--addressInfoBlockNameColor);
}
.address-info__block-name-icon {
  width: 3.75rem;
  height: 3.75rem;
}
.address-info__svc-contacts {
  grid-area: contacts;
  width: 100%;
  padding-inline: clamp(0.625rem, 0.3343023256rem + 1.1627906977vw, 1.25rem);
}
.address-info__svc-catalog {
  grid-area: services;
  max-width: 45.3125rem;
  width: 100%;
  padding-inline: clamp(0.625rem, 0.3343023256rem + 1.1627906977vw, 1.25rem);
  margin-bottom: 1.4375rem;
}
.address-info__qs-line {
  grid-area: qs;
  margin-block: 1.25rem 0;
  justify-self: center;
  max-width: 29.4375rem;
  width: 100%;
}
.address-info__qs-line-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.9375rem;
  padding-block: 0.875rem;
  padding-inline: 1.875rem;
  border: var(--border-light);
  border-radius: var(--border-radius-small);
  color: var(--color-green-light);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  transition-duration: var(--transition-duration) !important;
}
.address-info__qs-line-phone {
  white-space: nowrap;
}
.address-info__qs-line-text {
  font-size: 0.9375rem;
  line-height: 1.3;
  max-width: 14.6875rem;
}
.address-info__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: start;
  column-gap: clamp(0.625rem, 0.2180232558rem + 1.6279069767vw, 1.5rem);
  row-gap: 0.625rem;
  grid-area: buttons;
}
.address-info__buttons-note {
  grid-column: 1/3;
  text-align: center;
  justify-self: center;
  font-size: 0.75rem;
  line-height: 1.2;
  color: var(--text-color-dark-secondary);
}
.address-info__button {
  justify-self: end;
  flex-shrink: 0;
  order: 2;
  font-size: 0.875rem;
  white-space: nowrap;
}
.address-info__button:nth-child(even) {
  justify-self: start;
}
.address-info__gallery {
  position: relative;
}

@media (width <= 100.06125rem) {
  .address-info__body {
    grid-template-columns: auto auto;
  }
}
@media (width <= 81.31125rem) {
  .address-info__body {
    grid-template-areas: "contacts services" "qs services" "buttons buttons";
  }
  .address-info__svc-catalog {
    max-width: 31.25rem;
  }
  .address-info__qs-line {
    margin-block: 0 1.5rem;
  }
  .address-info__qs-line-link {
    flex-direction: column;
  }
  .address-info__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 1/3;
  }
  .address-info__button {
    align-self: center;
    order: 0;
  }
}
@media (width <= 47.99875rem) {
  .address-info__map-block {
    border-radius: unset;
    margin-block: 0 2.75rem;
  }
  .address-info__body {
    display: flex;
    flex-direction: column;
  }
  .address-info__svc-contacts {
    margin-bottom: 1.125rem;
  }
  .address-info__svc-catalog {
    order: 1;
    max-width: unset;
  }
  .address-info__qs-line {
    align-self: center;
    margin-bottom: 3.75rem;
  }
  .address-info__qs-line-link {
    padding-block: 0;
    line-height: 1.4;
  }
  .address-info__buttons {
    order: 1;
    flex-direction: column;
    width: 100%;
  }
}
/*  ===================================  */
/*  =====END address-info component====  */
/*  ===================================  */
/* Block-card for advantage slider( our-advantage ).Part of Section advantages. Differences from blocks advantages in background color and positioning of the card*/
.advantage-card {
  --advantageCardTitleTextColor: var(--color-gray-800);
  --ourAdvantageCardBgColor: var(--color-accent-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.1875rem;
  max-width: 18.5625rem;
  width: 100%;
  padding: 1.1875rem 1.25rem 1.5625rem;
  border: var(--border-light);
  border-radius: var(--border-radius-small);
  background-color: var(--ourAdvantageCardBgColor);
}
.advantage-card__image {
  width: 3.75rem;
  height: 3.75rem;
}
.advantage-card__heading {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  color: var(--advantageCardTitleTextColor);
}
.advantage-card__text {
  color: var(--text-color-dark-secondary);
  line-height: 1.52;
}

@media (width <= 47.99875rem) {
  .advantage-card {
    padding: 1.25rem 1.25rem 1.125rem;
    row-gap: 1.125rem;
  }
  .advantage-card__heading {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
  .advantage-card__text {
    line-height: 1.47;
  }
}
/* Section advantages.Slider(our-advantage). Differences from the advantages section, in the cards.*/
.advantages {
  --advantagesSlidesQuantity: 4;
  overflow-x: hidden;
}
.advantages__title {
  margin-bottom: 3.125rem;
}
.advantages__slider-wrapper {
  display: grid;
  grid-template-rows: auto !important;
  grid-template-columns: repeat(var(--advantagesSlidesQuantity), 18.5625rem);
  column-gap: 1.5rem;
}
.advantages__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.25rem;
}
.advantages__button {
  font-size: 1rem;
}

@media (width <= 63.99875rem) {
  .advantages__slider {
    margin-block: 0 1.25rem;
  }
  .advantages__buttons {
    column-gap: 1rem;
    justify-content: start;
  }
}
@media (width <= 47.99875rem) {
  .advantages__slider-wrapper {
    column-gap: 0.625rem;
  }
}
/*  ===================================  */
/*  =======END section advantages======  */
/*  ===================================  */
/* Blok-card other-services-card. Part of component other-services */
.other-service-card {
  --otherServiceCardBgColor: var(--color-gray-800);
  max-width: 13.75rem;
  min-height: 10.75rem;
  width: 100%;
  will-change: transform;
}
.other-service-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  width: 100%;
  padding: 0.5rem clamp(0.625rem, 0.3343023256rem + 1.1627906977vw, 1.25rem)
    0.875rem;
  color: var(--text-color-light);
  background-color: var(--otherServiceCardBgColor);
  border-radius: var(--border-radius);
  transition-duration: var(--transition-duration) !important;
}
@media (any-hover: hover) {
  .other-service-card__link:hover {
    filter: opacity(1);
  }
  .other-service-card__link:hover .other-service-card__link-text {
    filter: brightness(70%);
  }
}
@media (any-hover: hover) and (any-hover: none) {
  .other-service-card__link:active {
    filter: opacity(1);
  }
  .other-service-card__link:active .other-service-card__link-text {
    filter: brightness(70%);
  }
}
.other-service-card__link:active {
  filter: brightness(90%);
}
.other-service-card__link-text {
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.7;
  letter-spacing: var(--letter-spacing);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  transition-duration: var(--transition-duration);
}
.other-service-card__image {
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 0.625rem;
}
.other-service-card__name {
  font-size: clamp(0.9375rem, 0.7921511628rem + 0.5813953488vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.375rem;
}

@media (width <= 30.06125rem) {
  .other-service-card__link {
    padding: 0.9375rem 0.625rem 1.3125rem;
  }
}
/* Section other-services.*/
.other-services__list {
  max-width: 59.5rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: clamp(0.625rem, 0.2180232558rem + 1.6279069767vw, 1.5rem);
}

@media (width <= 63.99875rem) {
  .other-services__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: clamp(0.625rem, -3.7354651163rem + 17.4418604651vw, 10rem);
  }
  .other-services__list-item {
    justify-self: end;
  }
  .other-services__list-item:nth-child(even) {
    justify-self: start;
  }
}
/*  ===================================  */
/*  =======END section other-services======  */
/*  ===================================  */
/* Section appointment-choose */
.appointment-choose__wrapper {
  display: flex;
  align-items: center;
  background-color: var(--color-gray-800);
  width: 100%;
  min-height: 8.625rem;
  padding-block: 0.625rem;
  padding-inline: 10.4375rem;
  border-radius: var(--border-radius-small);
}
.appointment-choose__title {
  color: var(--text-color-light);
  font-size: clamp(1.25rem, 1.0174418605rem + 0.9302325581vw, 1.75rem);
  line-height: 1.35;
  margin-right: 4.375rem;
}
.appointment-choose__image {
  width: 5.375rem;
  height: 6.75rem;
}
.appointment-choose__image-wrapper {
  flex-shrink: 0;
  display: inline-flex;
  align-items: end;
  width: 5.375rem;
  height: 7.375rem;
  margin-right: 1.375rem;
}
.appointment-choose__buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.appointment-choose__button {
  min-width: 8.75rem;
}

@media (width <= 100.06125rem) {
  .appointment-choose__wrapper {
    padding-inline: 1.25rem;
    justify-content: center;
    gap: 1.5rem;
  }
  .appointment-choose__image-wrapper {
    margin-right: 0;
  }
  .appointment-choose__title {
    margin-right: 0;
  }
}
@media (width <= 63.99875rem) {
  .appointment-choose__wrapper {
    padding-block: 1.875rem;
    flex-direction: column;
    max-width: 34.375rem;
    margin-inline: auto;
    gap: 2.125rem;
  }
  .appointment-choose__title {
    font-size: 1.25rem;
    line-height: 1.5;
    text-align: center;
    max-width: 15.625rem;
    text-transform: uppercase;
  }
  .appointment-choose__image-wrapper {
    align-items: start;
  }
  .appointment-choose__buttons {
    max-width: 18.75rem;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
  }
}
@media (width <= 35.93625rem) {
  .appointment-choose__wrapper {
    padding-inline: 1rem;
  }
  .appointment-choose__buttons {
    max-width: unset;
  }
}
/*  ===================================  */
/*  ======END appointment-choose=======  */
/*  ===================================  */
/* Navigation footer section. part of footer */
.footer-svc-links__heading {
  font-size: 1rem;
  line-height: 2.625rem;
  letter-spacing: var(--letter-spacing);
  font-weight: 600;
  text-align: center;
  color: var(--color-light);
  border-bottom: var(--border-light);
  width: 100%;
  margin-bottom: 2.25rem;
}
.footer-svc-links__nemu {
  font-weight: 600;
  font-size: 0.875rem;
}
.footer-svc-links__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(auto, 11.875rem));
  gap: 1.5rem;
}
.footer-svc-links__item:not(:last-child) {
  margin-bottom: 0.875rem;
}
.footer-svc-links__link {
  line-height: 1.44;
}

@media (width <= 81.31125rem) {
  .footer-svc-links__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.75rem 1.5rem;
  }
}
@media (width <= 30.06125rem) {
  .footer-svc-links__list {
    grid-template-columns: 1fr;
    gap: 0.875rem 1.5rem;
  }
}
/* Block footer . For all pages.*/
.footer {
  background-color: var(--color-gray-800);
  color: var(--color-white-opacity-35);
}
.footer__inner {
  padding-block: clamp(0.9375rem, 0.6468023256rem + 1.1627906977vw, 1.5625rem)
    clamp(1.375rem, 0.2122093023rem + 4.6511627907vw, 3.875rem);
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: repeat(2, auto);
  row-gap: clamp(1.9375rem, 1.414244186rem + 2.0930232558vw, 3.0625rem);
  column-gap: 4.625rem;
}
.footer__heading {
  max-width: 21.875rem;
  width: 100%;
}
.footer__heading-text {
  font-size: 0.8125rem;
  line-height: 1.4;
}
.footer__logo {
  width: 20.6875rem;
  height: 4.875rem;
  margin-bottom: 1rem;
  margin-left: -0.625rem;
}
.footer__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1.375rem;
  align-self: flex-end;
  max-width: 52rem;
}
.footer__qs-line {
  grid-area: qs;
  max-width: 25.25rem;
  width: 100%;
}
.footer__qs-line-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-block: clamp(0rem, -0.4941860465rem + 1.976744186vw, 1.0625rem);
  padding-inline: 2.5rem;
  border: var(--border-light);
  border-radius: var(--border-radius-small);
  color: var(--color-green-light);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: var(--letter-spacing);
  text-align: center;
  text-transform: uppercase;
}
.footer__qs-line-phone {
  white-space: nowrap;
}
.footer__qs-line-text {
  font-size: 0.9375rem;
  line-height: 1.3;
  max-width: 14.6875rem;
}
.footer__yandex-button {
  grid-area: yandex;
  justify-self: center;
  width: clamp(3.375rem, 2.851744186rem + 2.0930232558vw, 4.5rem);
  height: clamp(4.3125rem, 3.6438953488rem + 2.6744186047vw, 5.75rem);
  margin-top: -0.5625rem;
}
.footer__button {
  grid-area: button;
  font-size: 1rem;
}
.footer__svc-links {
  max-width: 52rem;
}
.footer__links {
  align-self: end;
  color: var(--color-light);
  font-size: 1rem;
  line-height: 1.25;
}
.footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 1.9375rem 1.875rem;
  letter-spacing: var(--letter-spacing);
}
.footer ul {
  list-style: none;
  margin-block: 0;
  padding: 0;
}

@media (width <= 81.31125rem) {
  .footer__buttons {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: minmax(5.75rem, auto) auto;
    grid-template-areas: "yandex qs" "button button";
    row-gap: 2.25rem;
  }
  .footer__button {
    justify-self: center;
  }
  .footer__links {
    align-self: center;
  }
}
@media (width <= 63.99875rem) {
  .footer .container {
    --container-padding-x: 1.875rem;
  }
  .footer__inner {
    padding-block: 1.5625rem 3.9375rem;
    grid-template-areas: "heading buttons" "links-list links-list" "svc svc";
    column-gap: 2.125rem;
  }
  .footer__heading {
    grid-area: heading;
    justify-self: center;
    text-align: center;
    margin-left: -0.625rem;
  }
  .footer__heading-text {
    font-size: 0.75rem;
  }
  .footer__links {
    grid-area: links-list;
    margin-bottom: 1.375rem;
  }
  .footer__links-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem 1.5rem;
  }
  .footer__svc-links {
    grid-area: svc;
    max-width: unset;
  }
  .footer__buttons {
    grid-area: buttons;
    margin-inline: auto;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    max-width: unset;
    width: 100%;
    grid-template-areas: "yandex button" ". qs";
    row-gap: 1rem;
  }
  .footer__button {
    align-self: start;
  }
  .footer__yandex-button {
    width: 3.375rem;
    height: 4.3125rem;
    align-self: start;
  }
}
@media (width <= 47.99875rem) {
  .footer .container {
    --container-padding-x: 1rem;
  }
  .footer__inner {
    padding-block: 0.6875rem 1.375rem;
    grid-template-columns: 1fr;
    grid-template-areas: "heading" "buttons" "links-list" "svc";
    row-gap: 0;
  }
  .footer__heading {
    max-width: unset;
    width: 100%;
    margin-bottom: 1rem;
    margin-left: unset;
  }
  .footer__logo {
    margin-bottom: 1.125rem;
    margin-left: unset;
  }
  .footer__buttons {
    grid-template-rows: 1fr minmax(5.75rem, auto);
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "button button" "yandex qs";
    column-gap: 1.6875rem;
    row-gap: 2.3125rem;
    margin-bottom: 1.3125rem;
  }
  .footer__qs-line {
    min-width: 14.9375rem;
  }
  .footer__yandex-button {
    align-self: start;
    margin-top: 0.4375rem;
  }
  .footer__links {
    margin-bottom: 1.75rem;
  }
  .footer__links-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
  }
}
@media (width <= 30.06125rem) {
  .footer__yandex-button {
    margin-top: 0.4375rem;
  }
}
/*  ===================================  */
/*  =============END footer============  */
/*  ===================================  */

/*# sourceMappingURL=addresses-card.css.map */
